@php $features = $features ?? [ [ 'icon' => 'fas fa-rocket', 'title' => 'Fast Performance', 'description' => 'Lightning-fast loading speeds for better user experience' ], [ 'icon' => 'fas fa-shield-alt', 'title' => 'Secure & Reliable', 'description' => 'Enterprise-grade security to protect your business data' ], [ 'icon' => 'fas fa-chart-line', 'title' => 'Business Growth', 'description' => 'Tools and insights to help your business scale effectively' ] ]; @endphp

{{ $featuresTitle ?? 'Why Choose Us' }}

{{ $featuresSubtitle ?? 'Discover what makes us different' }}

@foreach($features as $feature)

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach