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