import SEO from '@/components/SEO' import { Link } from 'react-router-dom' import { ArrowRight, Award, BadgeCheck, CheckCircle2, Compass, Cpu, Handshake, Headphones, Route, ShieldCheck, Users, Wrench } from 'lucide-react' const proofPoints = [ { label: '25+ years', detail: 'Communications and infrastructure experience', icon: Award }, { label: '8x8 certified', detail: 'Sales, engineering, build, deployment, and support', icon: BadgeCheck }, { label: 'Cisco certified', detail: 'Networking and communications implementation', icon: ShieldCheck }, { label: 'Veteran owned', detail: 'Disciplined delivery and direct accountability', icon: Users }, ] const operatingPrinciples = [ { title: 'Own the outcome', desc: 'We stay close to implementation details so decisions survive real production conditions.', icon: Wrench, }, { title: 'Recommend what fits', desc: 'We align platforms, budgets, users, and support realities before anyone signs a contract.', icon: Handshake, }, { title: 'Design for operations', desc: 'Documentation, migration planning, training, and escalation paths are part of the work.', icon: Route, }, { title: 'Support after go-live', desc: 'Our team remains accountable after deployment, when reliability starts to matter most.', icon: Headphones, }, ] const capabilities = [ 'UCaaS and cloud PBX migration', 'Contact center implementation', 'Network infrastructure and cabling', 'Wireless access design', 'Vendor-neutral consulting', 'Managed support and monitoring', 'Cloud migration support', 'Disaster recovery planning', ] const About = () => { return ( <> {/* Page Hero */}

Accountable communications infrastructure, built around how your business actually works.

Queue North helps organizations choose, implement, and support the phone, contact center, network, and IT systems that keep daily operations moving.

Start a Conversation

At a glance

{proofPoints.map((point) => { const Icon = point.icon return (

{point.label}

{point.detail}

) })}
{/* Operating Model */}

How we work

We bridge strategy, deployment, and long-term ownership.

Many businesses are asked to pick platforms before anyone has mapped the operational reality. Queue North starts with the environment, the people using it, and the support model that has to carry it after launch.

{operatingPrinciples.map((item) => { const Icon = item.icon return (

{item.title}

{item.desc}

) })}
{/* Meaning */}

The name

Queue is stability. North is responsible progress.

{/* Capabilities */}

Expertise

Practical coverage from assessment through support.

We work across the pieces that make communications reliable: platforms, networks, users, support process, and vendor coordination.

{capabilities.map((item) => (
))}
{/* CTA */}

Need a cleaner path forward?

Talk with a team that can help evaluate the current state, recommend the right path, and stay accountable after deployment.

Request Consultation
) } export default About