/** * Root layout for the /browser/:activityId route tree, which lives outside * the [locale] marketing tree (it is loaded by the VR app / embedded * contexts, so it gets no site chrome). Page metadata comes from page.tsx. */ export default function BrowserLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }