| /** | |
| * 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> | |
| ); | |
| } | |