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 */
5export const metadata = { title: 'auth' };
6export const dynamic = 'force-dynamic';
7
8export default function AuthOverviewPage() {
9 return null;
10}