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 (

See you again soon!

Log back in
Back to home
); }; export default SignOut;