function Nav() {
const isMobile = useMediaQuery('(max-width: 768px)');
const [menuOpen, setMenuOpen] = React.useState(false);
const links = [
{ href: '#how', label: 'How it works' },
{ href: '#who', label: "Who it's for" },
{ href: '#pricing', label: 'Pricing' },
];
return (
);
}
const navLinkStyle = {
fontSize: 14, color: 'var(--ink-2)',
transition: 'color 0.2s'
};
function Logo() {
return (
);
}
window.Nav = Nav;
window.Logo = Logo;