// Sticky translucent top nav const Nav = ({route, setRoute, onSignup, onCart, cartCount=0, onSignin, isResellerAuthed}) => { const [open, setOpen] = React.useState(false); const links = [ {id:"services", label:"Services"}, {id:"shop", label:"Shop"}, {id:"wholesale", label:"Wholesale"}, {id:"about", label:"About"}, {id:"contact", label:"Contact"}, ]; const go = (id) => { setRoute(id); setOpen(false); window.scrollTo({top:0, behavior:"instant"}); }; return ( ); }; window.Nav = Nav;