// Layout.jsx — Nav + Footer + WhatsApp Float const WA_LINK = "https://wa.me/556282585529?text=Ol%C3%A1!%20Gostaria%20de%20agendar%20um%20hor%C3%A1rio%20na%20Essenza%20Glow."; const LOGO = "https://imagedelivery.net/mYdfeAeRRdkIXG5w7XJhtQ/95afd9ef-45d9-459d-dbdd-e1ab31607300/public"; const NAV_LINKS = [ { label: "Serviços", href: "#services" }, { label: "Resultados", href: "resultados.html" }, { label: "Sobre", href: "sobre.html" }, { label: "Blog", href: "blog.html" }, { label: "FAQ", href: "#faq" }, ]; function Nav() { const [scrolled, setScrolled] = React.useState(false); const [open, setOpen] = React.useState(false); React.useEffect(() => { const fn = () => setScrolled(window.scrollY > 60); window.addEventListener("scroll", fn, { passive: true }); return () => window.removeEventListener("scroll", fn); }, []); const close = () => setOpen(false); return ( <> {/* Mobile menu */}
Essenza Glow
{NAV_LINKS.map((l, i) => ( {l.label} ))}

Realce sua beleza natural.

Agendar pelo WhatsApp
Instagram
); } function Footer() { return ( ); } function WAFloat() { return ( ); } Object.assign(window, { Nav, Footer, WAFloat, WA_LINK });