// Top nav — Apple-store-ish: thin sticky bar, translucent blur, inline links. // Plus a slim "alert bar" above it for 24/7 emergency contact. function AlertBar({ show }) { if (!show) return null; return (
24/7 water damage response —{' '} Call (954) 635-8521
); } function Nav({ showAlert }) { const [open, setOpen] = useState(false); const links = [ { label: 'Services', href: 'Services.html' }, { label: 'Water damage', href: 'Services.html#water' }, { label: 'Pricing', href: '#pricing' }, { label: 'Partners', href: '#properties' }, { label: 'Process', href: '#process' }, { label: 'FAQ', href: '#faq' }, ]; return ( ); } Object.assign(window, { Nav, AlertBar });