28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<section class="section-padding bg-background">
|
|
<div class="container-padding">
|
|
<div class="text-center mb-16">
|
|
<h2 class="text-section-title mb-6">
|
|
{!! $content['title'] !!}
|
|
</h2>
|
|
<p class="text-large text-muted-foreground max-w-3xl mx-auto">
|
|
{{ $content['subtitle'] }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
|
|
@foreach ($content['stats'] as $stat)
|
|
<div class="card-elevated rounded-2xl p-8 text-center">
|
|
<h2 class="text-4xl lg:text-5xl font-bold text-secondary mb-4">
|
|
{{ $stat['number'] }}
|
|
</h2>
|
|
<h3 class="text-xl lg:text-2xl font-semibold text-foreground mb-3">
|
|
{{ $stat['label'] }}
|
|
</h3>
|
|
<p class="text-md text-muted-foreground leading-relaxed">
|
|
{{ $stat['description'] }}
|
|
</p>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|