/* Sea La Vie — page bootstrap. Reads
and renders. */
const PAGE_REGISTRY = {
home: () => ,
residences: () => ,
experiences: () => ,
cuisine: () => ,
wellness: () => ,
journal: () => ,
availability:() => ,
story: () => ,
contact: () => ,
privacy: () => ,
terms: () => ,
cookies: () => ,
accessibility:() =>
};
const page = (document.body.dataset.page || "home").trim().toLowerCase();
const renderFn = PAGE_REGISTRY[page] || PAGE_REGISTRY.home;
ReactDOM.createRoot(document.getElementById("root")).render(renderFn());