// REALIZE.CONTENT — Header / Nav (multi-page aware) // Pass currentPage = 'home' | 'projetos' | 'realizers' (or a project slug) const Header = ({ currentPage = 'home', basePath = './' }) => { const links = [ { id: 'home', label: 'Manifesto', href: `${basePath}index.html` }, { id: 'projetos', label: 'Projetos', href: `${basePath}projetos.html` }, { id: 'realizers', label: 'Realizers', href: `${basePath}realizers.html` }]; const [open, setOpen] = React.useState(false); const close = () => setOpen(false); return (
REALIZE.CONTENT
); }; window.Header = Header;