| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
- /**
- * /
- *
- * RHL-019:
- * - Placeholder entry page
- *
- * Later:
- * - If unauthenticated: redirect to /login
- * - If authenticated: redirect to a branch route (e.g. /NL01)
- */
- export default function ProtectedEntryPage() {
- return (
- <PlaceholderPage
- title="Entry"
- description='This is the protected entry route ("/"). Later it will redirect based on the session.'
- >
- <div className="space-y-2 text-sm text-muted-foreground">
- <p>Try these URLs manually:</p>
- <ul className="list-disc pl-5">
- <li>
- <code className="rounded bg-muted px-1 py-0.5">/login</code>
- </li>
- <li>
- <code className="rounded bg-muted px-1 py-0.5">/NL01</code>
- </li>
- <li>
- <code className="rounded bg-muted px-1 py-0.5">
- /NL01/2025/12/31
- </code>
- </li>
- <li>
- <code className="rounded bg-muted px-1 py-0.5">/NL01/search</code>
- </li>
- </ul>
- </div>
- </PlaceholderPage>
- );
- }
|