Localization and AI chat widget

This commit is contained in:
HugeFrog24
2026-02-14 01:19:52 +01:00
parent c39800a021
commit 39b463d1a1
31 changed files with 158 additions and 110 deletions

View File

@@ -1,8 +1,9 @@
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("/en");
redirect(`/${routing.defaultLocale}`);
}