/* TopNav.jsx — big logo + center pill + 2 social icons */ function TopNav({ active = 'top' }) { const [open, setOpen] = React.useState(false); const items = [ { id: 'idea', label: 'The Idea' }, { id: 'origins', label: 'Origins' }, { id: 'timeline', label: 'Timeline' }, { id: 'fund', label: 'The Fund' }, { id: 'collectibles', label: 'Collectibles' }, { id: 'people', label: 'People' }, { id: 'characters', label: 'Characters' }, { id: 'collabs', label: 'Collab' }, ]; const go = (id) => (e) => { e.preventDefault(); const el = document.getElementById(id); if (el) el.scrollIntoView({ behavior: 'smooth', block: 'start' }); setOpen(false); }; return ( ); } window.TopNav = TopNav;