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

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
{signalPoints.map((point) => { const Icon = point.icon return (

{point.label}

{point.value}

) })}
) }