Files
nini-artgallery/src/app/page.tsx
2026-02-14 01:19:52 +01:00

10 lines
354 B
TypeScript

import { redirect } from "next/navigation";
import { routing } from "@/i18n/routing";
// Minimal fallback — the next-intl middleware handles root redirect with
// accept-language negotiation and cookie detection. This page should
// never be reached in normal operation.
export default function RootPage() {
redirect(`/${routing.defaultLocale}`);
}