import { Helmet } from 'react-helmet-async' import { services } from '@/data/services' import { MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network } from 'lucide-react' import { Link } from 'react-router-dom' const serviceLd = { '@context': 'https://schema.org', '@type': 'Service', serviceType: 'Business Communications and IT Services', provider: { '@type': 'Organization', name: 'Queue North Technologies', url: 'https://queuenorth.com', }, areaServed: { '@type': 'Place', name: 'United States', }, } const Services = () => { return ( <> Business Phone, UCaaS & IT Services | Queue North Technologies {/* Page Hero */}

Our Services

Comprehensive communications and infrastructure solutions designed to help your business thrive in today's digital landscape.

{/* Services Grid */}
{services.map((service) => (
{service.icon === 'message-circle' && } {service.icon === 'users' && } {service.icon === 'life-buoy' && } {service.icon === 'graduation-cap' && } {service.icon === 'link' && } {service.icon === 'wifi' && } {service.icon === 'network' && }

{service.name}

{service.shortDesc}

{service.benefits.slice(0, 3).map((benefit, index) => (
{benefit}
))}
Learn more
))}
{/* CTA */}

Looking for Something Specific?

Don't see exactly what you're looking for? We can help you find the right solution.

Request Consultation
) } export default Services