import SEO from '@/components/SEO' import { Link } from 'react-router-dom' import { ArrowRight, Award, CheckCircle2, Compass, Cpu, Handshake, Headphones, Route, Users, Wrench } from 'lucide-react' const proofPoints = [ { label: '25+ years', detail: 'Communications and infrastructure experience', icon: Award, accent: 'text-primary-blue', bg: 'bg-sky-50', border: 'border-t-primary-blue' }, { label: '8x8 Certified Partner', detail: 'Sales, engineering, build, deployment, and support', logo: '/assets/brand/8x8-logo-white.svg', logoAlt: '8x8 Certified Partner logo', logoClassName: 'h-6 w-14', }, { label: 'Cisco Partner', detail: 'Networking and communications implementation', logo: '/assets/brand/cisco-partner-logo-white.svg', logoAlt: 'Cisco Partner certification logo', logoClassName: 'h-10 w-10', }, { label: 'Veteran owned', detail: 'Disciplined delivery and direct accountability', icon: Users, accent: 'text-amber-600', bg: 'bg-amber-50', border: 'border-t-accent-gold' }, ] const operatingPrinciples = [ { title: 'Own the outcome', desc: 'We stay close to implementation details so decisions survive real production conditions.', icon: Wrench, accent: 'text-primary-blue', bg: 'bg-sky-50', border: 'border-t-primary-blue', }, { title: 'Recommend what fits', desc: 'We align platforms, budgets, users, and support realities before anyone signs a contract.', icon: Handshake, accent: 'text-teal-600', bg: 'bg-teal-50', border: 'border-t-teal-500', }, { title: 'Design for operations', desc: 'Documentation, migration planning, training, and escalation paths are part of the work.', icon: Route, accent: 'text-cyan-600', bg: 'bg-cyan-50', border: 'border-t-cyan-400', }, { title: 'Support after go-live', desc: 'Our team remains accountable after deployment, when reliability starts to matter most.', icon: Headphones, accent: 'text-amber-600', bg: 'bg-amber-50', border: 'border-t-accent-gold', }, ] 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 nameMeanings = [ { title: 'Queue', desc: 'Rooted in technology that works - proven, stable, and repeatable. We focus on environments that behave predictably in real production conditions.', icon: Cpu, border: 'border-t-primary-blue', iconWrap: 'bg-sky-50 text-primary-blue', }, { title: 'North', desc: 'A responsible direction forward - evaluating and adopting new technology carefully, with governance, security, and long-term ownership in mind.', icon: Compass, border: 'border-t-teal-500', iconWrap: 'bg-teal-50 text-teal-600', } ] const About = () => { return ( <> {/* Page Hero */}
Queue North team member reviewing communications infrastructure

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.logo ? ( {point.logoAlt} ) : (

{point.label}

{point.detail}

) })}
{/* Name */}

The name

Queue North

Where Stability Meets Direction

The name reflects how we approach technology: dependable systems first, then a responsible path forward.

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

{item.title}

{item.desc}

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

In practice

Stability first, then the right path forward.

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}

) })}
{/* 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, index) => (
))}
{/* 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