import { Helmet } from 'react-helmet-async' import { Link } from 'react-router-dom' import { ArrowRight, Building2, Compass, Headphones, Home, LifeBuoy, Network, ShieldCheck } from 'lucide-react' const recoveryLinks = [ { title: 'Services', description: 'Communications, support, cabling, wireless, and networking.', href: '/services', icon: Network, accent: 'text-primary-cyan', }, { title: 'Industries', description: 'Solutions by business environment.', href: '/industries', icon: Building2, accent: 'text-teal-300', }, { title: 'Support', description: 'Help for live systems, users, and endpoints.', href: '/support', icon: LifeBuoy, accent: 'text-amber-300', }, ] const signalPoints = [ { label: 'Route check', value: 'Active', icon: Compass }, { label: 'Partner desk', value: 'Online', icon: Headphones }, { label: 'Uptime focus', value: 'Locked', icon: ShieldCheck }, ] export default function NotFound() { return ( <> Page Not Found | Queue North Technologies Route recalibration 404 This route dropped off the network. That page is gone or renamed. We'll get you back to a live connection. Back to Home Talk to Us {signalPoints.map((point) => { const Icon = point.icon return ( {point.label} {point.value} ) })} Recovery paths Choose the cleanest next hop. Queue North core Systems and support are still fully reachable. {recoveryLinks.map((item) => { const Icon = item.icon return ( {item.title} {item.description} ) })} > ) }
404
That page is gone or renamed. We'll get you back to a live connection.
{point.label}
{point.value}
Recovery paths
Choose the cleanest next hop.
Queue North core
Systems and support are still fully reachable.
{item.description}