@php $services = $services ?? [ [ 'icon' => 'fas fa-laptop-code', 'title' => 'Web Development', 'description' => 'Custom websites tailored to your business needs', 'link' => '#' ], [ 'icon' => 'fas fa-mobile-alt', 'title' => 'Mobile Solutions', 'description' => 'Responsive designs that work on all devices', 'link' => '#' ], [ 'icon' => 'fas fa-cogs', 'title' => 'System Integration', 'description' => 'Seamless integration with your existing systems', 'link' => '#' ], [ 'icon' => 'fas fa-headset', 'title' => '24/7 Support', 'description' => 'Round-the-clock assistance when you need it', 'link' => '#' ] ]; @endphp

{{ $servicesTitle ?? 'Our Services' }}

{{ $servicesDescription ?? 'We offer comprehensive solutions designed to help your business thrive in the digital age.' }}

@if(isset($servicesButton)) {{ $servicesButton }} @endif
@foreach($services as $service)

{{ $service['title'] }}

{{ $service['description'] }}

@if($service['link'] !== '#') Learn more @endif
@endforeach