const Footer = () => { const currentYear = new Date().getFullYear() const companyInfo = { name: 'Queue North', tagline: 'Modern communications infrastructure without the vendor noise.', address: 'Your trusted partner in UCaaS, Contact Center, and infrastructure solutions.', email: 'info@queuenorth.com', phone: '(906) 482-6616', } const quickLinks = [ { name: 'Home', href: '/' }, { name: 'Services', href: '/services' }, { name: 'Industries', href: '/industries' }, { 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' }, ] return ( ) } export default Footer