page.tsx10 lines · main
| 1 | /** |
| 2 | * Old overview page — layout already shows the moved notice for all /auth/* |
| 3 | * routes. Keep a no-op page so Next still resolves the segment. |
| 4 | */ |
| 5 | export const metadata = { title: 'auth' }; |
| 6 | export const dynamic = 'force-dynamic'; |
| 7 | |
| 8 | export default function AuthOverviewPage() { |
| 9 | return null; |
| 10 | } |