diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 00000000000..2dc343042df --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,7 @@ +import { redirect } from "next/navigation" + +import { DEFAULT_LOCALE } from "@/lib/constants" + +export default function RedirectPage() { + redirect(DEFAULT_LOCALE) +}