// 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 }