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 } 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
{/* Services Section */}

Our Services

Comprehensive communications and infrastructure solutions for every business need

{services.map((service) => ( {service.name} {service.shortDesc}

{service.fullDesc}

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