/* global React */ function TopNav() { const [open, setOpen] = React.useState(false); const close = () => setOpen(false); const linkStyle = { fontFamily: 'var(--font-sans)', fontWeight: 600, fontSize: 47, padding: '30px 51px', borderRadius: 999, cursor: 'pointer', display: 'inline-flex', alignItems: 'center', gap: 6, }; return (
House Rules House Rules. {/* Desktop nav */} {/* Hamburger — mobile only */}
{/* Mobile dropdown */}
Decks How Easy Is It? Examples Start your deck →
); } window.TopNav = TopNav;