aboutsummaryrefslogtreecommitdiffstats
path: root/app/page.tsx
blob: b903c5af4a39336f3a4ef4fae881694cff8d8341 (plain)
1
2
3
4
5
6
7
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
}