import { Helmet } from 'react-helmet-async' import { industries } from '@/data/industries' import { Link } from 'react-router-dom' import { HeartPulse, ShoppingCart, Factory, Landmark, Building2 } from 'lucide-react' // Icon map for industries - converts icon string to lucide component const industryIcons = { 'heart-pulse': HeartPulse, 'shopping-cart': ShoppingCart, factory: Factory, landmark: Landmark, } const Industries = () => { return ( <> Industries We Serve | Queue North Technologies {/* Page Hero */}

Industries We Serve

Tailored communications and infrastructure solutions designed for the unique challenges of your industry.

{/* Industries Grid */}
{industries.map((industry) => { const IconComponent = industryIcons[industry.icon] || Building2 return (

{industry.name}

{industry.shortDesc}

Pain Points We Solve

{industry.painPoints.slice(0, 2).map((painPoint, index) => (
{painPoint}
))}
Learn more
) })}
{/* CTA */}

Can't Find Your Industry?

We work with businesses across all industries. Contact us to discuss your specific needs.

Request Consultation
) } export default Industries