33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<section class="{{ $bg }} text-secondary-foreground section-padding">
|
|
<div class="container-narrow text-center">
|
|
<div class="spacing-section">
|
|
<h2 class="text-section-title text-white">
|
|
{!! $content['title'] !!}
|
|
</h2>
|
|
|
|
|
|
<p class="text-large text-secondary-foreground max-w-2xl mx-auto leading-relaxed">
|
|
{{ $content['subtitle'] }}
|
|
</p>
|
|
|
|
<div class="grid md:grid-cols-3 gap-8 py-8">
|
|
@foreach($content['stats'] as $stat)
|
|
<div class="text-center space-y-3">
|
|
<div class="text-4xl font-light text-secondary-foreground">{{ $stat['number'] }}</div>
|
|
<p class="text-secondary-foreground text-sm">{{ $stat['label'] }}</p>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
|
|
<div class="spacing-content">
|
|
<a href="{{ $content['button_link'] }}" class="btn-primary-accent">
|
|
{{ $content['button_text'] }}
|
|
</a>
|
|
|
|
<p class="text-secondary-foreground text-sm">
|
|
{{ $content['small_text'] }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|