diff options
Diffstat (limited to 'web/app/page.tsx')
| -rw-r--r-- | web/app/page.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/app/page.tsx b/web/app/page.tsx new file mode 100644 index 00000000..2df40508 --- /dev/null +++ b/web/app/page.tsx @@ -0,0 +1,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> + ); +} |
