import type { ReactNode } from 'react'; // Root layout is a passthrough — the real / shell lives in // app/[locale]/layout.tsx so every page is locale-scoped. export default function RootLayout({ children }: { children: ReactNode }) { return children; }