// Root layout — wraps EVERY page (marketing + admin). Intentionally thin: it // loads the stylesheet and lets each AREA layout ((marketing)/layout.tsx, // admin/layout.tsx) supply its own chrome. Layouts nest, so an admin page is // wrapped root → admin. // // Don't render // here — the framework shell owns them. import type { ReactNode } from 'react' import '../globals.css' export default function RootLayout({ children }: { readonly children: ReactNode }): ReactNode { return <>{children} }