import SEO from '@/components/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 Industries = () => { return ( <> {/* Hero */}

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 */}
{industries.map((industry) => { const Icon = iconMap[industry.icon] || Building2 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