import { services } from '@/data/services' import { MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network } from 'lucide-react' 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.icon === 'message-circle' && } {service.icon === 'users' && } {service.icon === 'life-buoy' && } {service.icon === 'graduation-cap' && } {service.icon === 'link' && } {service.icon === 'wifi' && } {service.icon === 'network' && }

{service.name}

{service.shortDesc}

{service.benefits.slice(0, 3).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