import { signOut } from 'next-auth/react'; const Home = () => { function logoutHandler() { signOut(); } return ( <>

Home

); }; export default Home;