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 } from 'lucide-react' 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 Certified Partner with proven expertise

8x8 8x8 Certified Partner
V
Veteran Owned
{/* 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.

{/* 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

Three pillars of our approach to communications and infrastructure

Architecture Strategic Design

We design communications architectures that scale with your business, not against it. Our approach ensures your infrastructure supports your goals, not complicates them.

Deployment Seamless Implementation

Our deployment process minimizes disruption and maximizes efficiency. We handle everything from planning to go-live, ensuring smooth transitions and quick ROI.

Lifecycle Support Ongoing Optimization

Our support extends beyond installation. We continuously monitor, optimize, and evolve your communications infrastructure to meet changing business needs.

{/* Industries Section */}

Industries We Serve

Tailored solutions for healthcare, retail, manufacturing, and more

{industries.map((industry) => (

{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