/* Site chrome + helpers for the Camille Bardiau UI kit. */ (function () { const { Button, IconButton } = window.CamilleBardiauDesignSystem_92b58f; const D = window.CB_DATA; const Icon = (n, props = {}) => React.createElement("i", { "data-lucide": n, ...props }); /* --- Top navigation --- */ function Nav({ current, onNavigate }) { const [open, setOpen] = React.useState(false); return (
setOpen((o) => !o)}> {Icon(open ? "x" : "menu")}
{open && (
{D.nav.map((n) => ( ))}
)}
); } /* --- Footer --- */ function Footer({ onNavigate }) { return ( ); } window.CBKit = { Nav, Footer, Icon }; })();