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 { useNavigate } from 'react-router-dom' import { MapPin, MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network, Headphones, UserCheck, Activity, ShieldCheck, HeartPulse, ShoppingCart, Factory, Landmark } 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 navigate = useNavigate() return ( <> {/* 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.

8x8 8x8 Certified Partner
V
Veteran Owned
25+ Years Experience
SMB to Enterprise
Communications Infrastructure
{/* Trust Bar */}

Trusted Partner

8x8 and Cisco Certified Partner with proven expertise

8x8 8x8 Certified Partner
C
Cisco Certified Partner
V
Veteran Owned
{/* JointLogoWhite Trust Section */}

Certified Excellence

Joint Logo White - 8x8 and Cisco Partner

Official 8x8 Certified Partner

JointLogoWhite certification demonstrates our commitment to delivering enterprise-grade communications solutions. We meet rigorous standards for UCaaS, contact center, and collaboration platforms.

Our 8x8 expertise spans cloud PBX, VoIP implementation, and comprehensive support — ensuring your business communications infrastructure is built on a proven foundation.

{/* Trust Signals Section */}

Trusted by Thousands of Businesses

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

{/* 8x8 Certified Partner */}
8x8

8x8 Certified Partner

Official 8x8 Certification #25432

As an 8x8 Certified Partner, we meet rigorous standards for UCaaS and contact center solutions. We're authorized to deploy, manage, and support 8x8's enterprise-grade platform.

{/* Cisco Partnership */}
C

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 */}
V

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.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.homeDesc}

{service.shortDesc}

))}
{/* Why Queue North */}

Why Queue North

Four concrete differentiators that set us apart

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] return (

{industry.name}

Industry-specific solutions designed to address your unique challenges and requirements.

) })}
{/* Final CTA */}

Tell us what you're trying to fix. We'll help map the path.

Schedule a free consultation with our communications experts.

) } export default Home