/* nav.jsx — top nav + mobile drawer */ function Nav({ onBookClick }) { const [scrolled, setScrolled] = useState(false); const [open, setOpen] = useState(false); useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 24); onScroll(); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); useEffect(() => { document.body.style.overflow = open ? "hidden" : ""; return () => {document.body.style.overflow = "";}; }, [open]); const links = [ { href: "#servicios", label: "Servicios" }, { href: "#resultados", label: "Resultados" }, { href: "#doctora", label: "La doctora" }, { href: "#educacion", label: "Educación" }, { href: "#contacto", label: "Contacto" }]; const go = (href) => (e) => { e.preventDefault(); setOpen(false); const el = href === "#top" ? null : document.querySelector(href); if (el) { window.scrollTo({ top: el.getBoundingClientRect().top + window.scrollY - 80, behavior: "smooth" }); } else if (href === "#top" && !window.location.hash) { window.scrollTo({ top: 0, behavior: "smooth" }); } else { // On a subpage (article): return to the landing and scroll there once mounted. try { sessionStorage.setItem("vd_scrollTo", href); } catch (err) {} if (window.location.hash) window.location.hash = ""; } }; return (
VD Dra. Victoria D'janon MEDICINA ESTÉTICA & TRICOLOGÍA · MONTERÍA
WhatsApp
{/* Mobile drawer */}
setOpen(false)}>
); } Object.assign(window, { Nav });