const Nav = ({ variant = 'light' }) => { const dark = variant === 'dark'; const [menuOpen, setMenuOpen] = React.useState(false); const navLinks = [ { label: 'Accueil', href: 'https://www.fundora.fr/' }, { label: 'Fundora Plus', href: 'https://www.fundora.fr/fundora-plus' }, { label: 'Nos services', href: 'https://www.fundora.fr/nos-services' }, { label: 'À propos', href: 'https://www.fundora.fr/a-propos' }, { label: 'Blog', href: 'https://www.fundora.fr/news' }, ]; return ( ); }; window.Nav = Nav;