aboutsummaryrefslogtreecommitdiffstats
path: root/app/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/page.tsx')
-rw-r--r--app/page.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/page.tsx b/app/page.tsx
new file mode 100644
index 0000000..b903c5a
--- /dev/null
+++ b/app/page.tsx
@@ -0,0 +1,8 @@
+// app/page.tsx
+
+import { redirect } from 'next/navigation';
+
+export default function Home() {
+ redirect('/login');
+ return null; // Since the redirect is immediate, nothing will render here
+}