@props([ 'title', 'subtitle' => null, 'stats' => [], ])

{{ $title ?? 'Our Impact' }}

@if($subtitle)

{{ $subtitle ?? '' }}

@endif
@foreach($stats as $stat)

{{ $stat['value'] }}

{{ $stat['label'] }}

@endforeach