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

Our Services

Comprehensive communications and infrastructure solutions designed to help your business thrive in today's digital landscape.

{/* Services Grid */}
{services.map((service) => (

{service.name}

{service.shortDesc}

{service.fullDesc}

{service.benefits.slice(0, 2).map((benefit, index) => ( {benefit} ))}
Learn more
))}
{/* CTA */}

Looking for Something Specific?

Don't see exactly what you're looking for? We can help you find the right solution.

Request Consultation
) } export default Services