mirror of
https://github.com/HugeFrog24/nini-artgallery.git
synced 2026-03-02 00:14:33 +00:00
10 lines
354 B
TypeScript
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}`);
|
|
}
|