import SEO from '@/components/SEO' import { buildBreadcrumbLd } from '@/lib/seo' import { industries } from '@/data/industries' import { ArrowRight, Building2, CheckCircle2, HeartPulse, ShoppingCart, Factory, Landmark } from 'lucide-react' import { Link } from 'react-router-dom' const iconMap = { 'heart-pulse': HeartPulse, 'shopping-cart': ShoppingCart, 'factory': Factory, 'landmark': Landmark, } const industryAccentStyles = [ { card: 'border-t-[3px] border-t-rose-400 hover:border-rose-400/60', iconWrap: 'bg-rose-50', icon: 'text-rose-600' }, { card: 'border-t-[3px] border-t-primary-blue hover:border-primary-blue/50', iconWrap: 'bg-sky-50', icon: 'text-primary-blue' }, { card: 'border-t-[3px] border-t-accent-gold hover:border-accent-gold/60', iconWrap: 'bg-amber-50', icon: 'text-amber-600' }, { card: 'border-t-[3px] border-t-teal-500 hover:border-teal-500/50', iconWrap: 'bg-teal-50', icon: 'text-teal-600' }, ] const Industries = () => { return ( <> {/* Hero */}
Network infrastructure used by businesses across industries

Built around how your industry actually works.

Communications and infrastructure solutions shaped by the compliance, workflow, and connectivity demands of your specific environment.

Talk to a Specialist
{/* Industries Grid */}

Industry fit

Communications needs change by environment.

We adapt platform, network, and support recommendations to the way your teams actually operate.

{industries.map((industry, index) => { const Icon = iconMap[industry.icon] || Building2 const accent = industryAccentStyles[index % industryAccentStyles.length] return (

{industry.name}

{industry.shortDesc}

    {industry.solutions.slice(0, 3).map((solution, i) => (
  • ))}
See how we help
) })}
{/* CTA */}

Don't see your industry?

We work with businesses across all sectors. If you have specific compliance, connectivity, or workflow requirements, let's talk.

Talk to a Specialist
) } export default Industries