File size: 370 Bytes
d635176 e6f1924 d635176 e6f1924 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /**
* Root Page
* Redirects handled by middleware:
* - If authenticated: /recruitment
* - If not authenticated: /login
*/
export default function Home() {
return (
<div className="flex items-center justify-center min-h-screen">
<div className="text-center">
<h1 className="text-2xl font-bold">Redirecting...</h1>
</div>
</div>
);
}
|