1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { LoginButton } from "../components/auth/login"; import { LogoutButton } from "../components/auth/logout"; export default function Home() { return ( <main className="flex min-h-screen flex-col items-center justify-between p-24"> <div> <LoginButton /> <br /> <br /> <LogoutButton /> </div> </main> ); }