diff options
Diffstat (limited to 'app/page.tsx')
| -rw-r--r-- | app/page.tsx | 8 |
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 +} |