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}

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