// Root layout — wraps EVERY page (marketing + dashboard). It's intentionally // thin: it loads the stylesheet and lets each AREA layout // ((marketing)/layout.tsx, dashboard/layout.tsx) supply its own chrome. // Layouts nest, so a dashboard page is wrapped root → dashboard. // // 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} }