import type { ReactNode } from "react"; // Root layout delegates rendering of / to app/[locale]/layout.tsx. // This file exists only to satisfy Next.js's requirement for a root layout. export default function RootLayout({ children }: { children: ReactNode }) { return children; }