import type { Metadata } from "next"; import BrowserClient from "./BrowserClient"; /** * /browser/:activityId — the shared cloud browser ("social browser") streamed * via Hyperbeam inside Bigscreen rooms. A STATIC route (no dynamic segment) so * the site exports to plain files: the activityId is read from the URL * client-side (BrowserClient), and the host rewrites /browser/* to this one * page (out/_redirects). Loaded by the VR app / embedded contexts, not browsed * by people: bare * full-viewport video, no site chrome, noindex. */ export const metadata: Metadata = { title: "Bigscreen Browser", robots: { index: false, follow: false }, }; export default function BrowserPage() { return ; }