import { industries } from '@/data/industries' const Industries = () => { return (
{/* Page Hero */}

Industries We Serve

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

{/* Industries Grid */}
{industries.map((industry) => (

{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