@php $stats = [ ['prefix' => '+', 'value' => 400, 'suffix' => '', 'label' => 'Clients accompagnés', 'decimals' => 0], ['prefix' => '', 'value' => 4.8, 'suffix' => '/5', 'label' => 'Note globale', 'decimals' => 1], ['prefix' => '+', 'value' => 22, 'suffix' => ' ans', 'label' => "D'expérience", 'decimals' => 0], ['prefix' => '', 'value' => 97, 'suffix' => '%', 'label' => 'Satisfaction client', 'decimals' => 0], ]; $services = [ ['abbr' => 'ADS', 'name' => 'Paid Ads', 'sub' => 'Acquisition', 'color' => 'teal'], ['abbr' => 'CONTENT', 'name' => 'Content Marketing', 'sub' => 'Engagement', 'color' => 'red'], ['abbr' => 'DEV', 'name' => 'Tech & Development', 'sub' => 'Développement', 'color' => 'teal'], ['abbr' => 'DATA', 'name' => 'Data', 'sub' => 'Data & Analytics', 'color' => 'red'], ['abbr' => 'STRATEGY', 'name' => 'Digital Strategy', 'sub' => '360° Consulting', 'color' => 'teal'], ['abbr' => 'AUTOMATION', 'name' => 'Marketing Automation ', 'sub' => 'Growth & Scale', 'color' => 'red'], ['abbr' => 'SEO', 'name' => 'Search Engine Optimization', 'sub' => 'Organic Visibility', 'color' => 'teal'], ]; @endphp

Atirao, partenaire de votre performance digitale.

Optimisez votre stratégie digitale pour un retour sur investissement concret. Au service de l'innovation et de la performance depuis plus de 22 ans.

@foreach ($services as $service)
{{ $service['abbr'] }} {{ $service['name'] }} {{ $service['sub'] }}
@endforeach
@foreach ($stats as $stat)
{{ $stat['prefix'] }}{{ $stat['value'] }}{{ $stat['suffix'] }} {{ $stat['label'] }}
@endforeach