import SEO from '@/components/SEO' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/Card' import { services } from '@/data/services' import { industries } from '@/data/industries' import { Link } from 'react-router-dom' import { ArrowRight, MapPin, MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network, Headphones, UserCheck, Activity, ShieldCheck, HeartPulse, ShoppingCart, Factory, Landmark, Building2, Award } from 'lucide-react' // Icon map for industries - converts icon string to lucide component const industryIcons = { 'heart-pulse': HeartPulse, 'shopping-cart': ShoppingCart, factory: Factory, landmark: Landmark, } const Home = () => { const organizationLd = { '@context': 'https://schema.org', '@type': 'Organization', name: 'Queue North Technologies', url: 'https://queuenorth.com', logo: 'https://queuenorth.com/assets/og-image.png', description: 'Business communications and IT partner. 8x8 Certified Partner, Veteran Owned, 25+ years of service.', address: { '@type': 'PostalAddress', addressCountry: 'US', }, contactPoint: { '@type': 'ContactPoint', telephone: '+1-321-730-8020', contactType: 'customer service', areaServed: 'US', }, sameAs: [], } const localBusinessLd = { '@context': 'https://schema.org', '@type': 'LocalBusiness', '@id': 'https://queuenorth.com/#business', name: 'Queue North Technologies', image: 'https://queuenorth.com/assets/og-image.png', url: 'https://queuenorth.com', telephone: '+1-321-730-8020', address: { '@type': 'PostalAddress', addressCountry: 'US', }, priceRange: '$$', openingHoursSpecification: { '@type': 'OpeningHoursSpecification', dayOfWeek: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'], opens: '08:00', closes: '18:00', }, } return ( <> {/* Hero Section */}
Queue North technician working inside a communications rack
Veteran-owned communications and infrastructure partner

Queue North Technologies

Business phone, contact center, network, and IT support built around one accountable implementation partner.

Schedule Consultation
{/* Partner Proof */}
8x8 Certified Partner logo 8x8 Certified Partner
Cisco Certified Partner
Veteran Owned
25+ Years Experience
{/* Services Section */}

What We Handle

From phones to firewalls, we keep your business running

{services.map((service) => (
{service.name}
{service.homeDesc}
Learn more
))}
{/* Why Queue North */}

Why Queue North

Four concrete differentiators that set us apart

Request Consultation

Responsiveness

When you call, a human answers — not a ticket queue, not a chatbot. Real support from people who know your system.

Direct Support

No account managers between you and the engineer solving your problem. You talk to the team that designed and deployed your system.

Proactive Monitoring

We catch problems before you notice them. 24/7 monitoring means we're often resolving issues before your phone rings.

Vendor Neutrality

As an 8x8 and Cisco Certified Partner, we recommend what works best for you — not what pays the highest commission. We've tested the alternatives so you don't have to.

{/* Industries Section */}

Industries We Serve

Tailored solutions for healthcare, retail, manufacturing, and more

{industries.map((industry) => { const IconComponent = industryIcons[industry.icon] || Building2 return (

{industry.name}

{industry.homeDesc || 'Industry-specific solutions designed to address your unique challenges and requirements.'}

Learn more
) })}
{/* Final CTA - Free Migration Offer */}

What we'll help you do

Identify the features you actually need

Align solutions with operations and budget

Plan deployment, migration, and training

Ask how you qualify for our free migration

Share a few details and we'll provide clear direction.

Request Consultation
) } export default Home