import { ChevronRight, Menu, Ship, X } from 'lucide-react'; import { useEffect, useState } from 'react'; import { Link, useLocation } from 'wouter'; const navLinks = [ { label: 'Platform', href: '/platform' }, { label: 'Capabilities', href: '/capabilities' }, { label: 'Use Cases', href: '/use-cases' }, { label: 'Security', href: '/security' }, { label: 'Pricing', href: '/pricing' }, ]; export function MarketingNav() { const [scrolled, setScrolled] = useState(false); const [mobileOpen, setMobileOpen] = useState(false); const [location] = useLocation(); useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 32); window.addEventListener('scroll', onScroll, { passive: true }); return () => window.removeEventListener('scroll', onScroll); }, []); useEffect(() => setMobileOpen(false), [location]); return ( ); }