aboutsummaryrefslogtreecommitdiffstats
path: root/app/page.tsx
blob: 2df405084c9d49ed142902994ee3d19049922389 (plain) (blame)
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>
  );
}