import type { NextPage } from "next"; import { useEffect } from "react"; import Link from "next/link"; import useAuth from "../../hooks/use-auth"; const SignOut: NextPage = () => { const auth = useAuth(); useEffect(() => void auth.signOut()); return (