import { redirect } from 'next/navigation' import { defaultLocale } from '@/lib/i18n' // This page catches requests to / and redirects to the default locale // The middleware should normally handle this, but this is a fallback export default function RootPage() { redirect(`/${defaultLocale}`) }