import { Sheet, SheetContent, SheetTrigger } from '@/components/ui/Sheet' import { useState } from 'react' const MobileNav = () => { const [isOpen, setIsOpen] = useState(false) const primaryLinks = [ { name: 'Home', href: '/' }, { name: 'About', href: '/about' }, { name: 'Contact', href: '/contact' }, { name: 'Support', href: '/support' }, ] const services = [ { name: 'Unified Communications', href: '/services/unified-communications' }, { name: 'Contact Center', href: '/services/contact-center' }, { name: 'Managed Support', href: '/services/managed-support' }, { name: 'Consulting & Training', href: '/services/consulting-training' }, { name: 'Infrastructure Cabling', href: '/services/infrastructure-cabling' }, { name: 'Wireless Access', href: '/services/wireless-access' }, { name: 'Local Networking', href: '/services/local-networking' }, ] const industries = [ { name: 'Healthcare', href: '/industries/healthcare' }, { name: 'Retail', href: '/industries/retail' }, { name: 'Manufacturing', href: '/industries/manufacturing' }, { name: 'Education & Finance', href: '/industries/education-finance' }, ] const closeMobileMenu = () => { setIsOpen(false) } return (