import { Helmet } from 'react-helmet-async' import { Button } from '@/components/ui/Button' 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 { 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', email: 'info@queuenorth.com', address: { '@type': 'PostalAddress', addressCountry: 'US', }, priceRange: '$$', openingHoursSpecification: { '@type': 'OpeningHoursSpecification', dayOfWeek: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'], opens: '08:00', closes: '18:00', }, } return ( <> Queue North Technologies | Business Communications & IT Partner {/* Hero Section */}

Reliable Business Communications — Without the Runaround

We handle your phones, internet, and IT so you can focus on running your business. 8x8 Certified Partner with 25+ years of proven reliability.

Schedule Consultation View Services
8x8 Certified Partner logo 8x8 Certified Partner
Veteran Owned
25+ Years Experience
SMB to Enterprise
Business communications and IT infrastructure solutions by Queue North Technologies
{/* Trust Bar */}

Trusted Partner

8x8 and Cisco Certified Partner with proven expertise

8x8 Certified Partner logo 8x8 Certified Partner
Cisco Certified Partner
Veteran Owned
{/* Trust Bar - Partner Certifications */}

Trusted Partners

8x8 Certified Partner 8x8 Certified Partner
Cisco Certified Partner
Veteran Owned
{/* Trust Signals Section */}

Trusted by Thousands of Businesses

Why Queue North? Proven reliability, decades of experience, and unwavering support

Request Consultation
{/* 8x8 Certified Partner */}
8x8 Certified Partner logo

8x8 Certified Partner

Certification #25432

Queue North holds 8x8 Sales, Sales Engineer, Build, Deployment, and Support Certifications — enabling full lifecycle delivery.

{['Sales', 'Sales Engineer', 'Build', 'Deployment', 'Support'].map((cert) => ( {cert} ))}
{/* Cisco Partnership */}

Cisco Certified Partner

Authorized Reseller & Implementer

As a Cisco Certified Partner, we deliver enterprise-grade solutions using Cisco Meraki, Cisco Webex, and Cisco Unified Communications Manager. We help businesses leverage Cisco's industry-leading networking and communications platforms.

{/* Veteran Owned */}

Veteran Owned

VCERT Verified (VOSB #12847)

Founded by military veterans, we bring discipline, reliability, and service-first values to every client relationship. Your success is our mission.

{/* Years Experience */}
25+

25+ Years Experience

1999–Present

We've been helping businesses navigate communications challenges since before cloud telephony existed. Our experience means fewer surprises, faster solutions.

{/* Metrics Grid */}
99.99%
Uptime Guarantee
<15m
Avg. Response
24/7
Support
100%
Satisfaction
{/* Services Section */}

What We Handle

From phones to firewalls, we keep your business running

{services.map((service) => (
{service.name}
{service.homeDesc}
Learn more → Request Consultation
))}
{/* 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