import { type NextPage } from "next"; import Head from "next/head"; import { signIn, useSession } from "next-auth/react"; import RoomList from "~/components/RoomList"; import { useState } from "react"; import Link from "next/link"; import Loading from "~/components/Loading"; import { FaShieldAlt } from "react-icons/fa"; const Home: NextPage = () => { return ( <>