b2in/resources/views/livewire/web/components/sections/partner-c-t-a.blade.php

33 lines
1.3 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 slide-up delay-300">
{!! $content['title'] !!}
</h2>
<p class="text-large text-secondary-foreground max-w-2xl mx-auto leading-relaxed slide-up delay-300">
{{ $content['subtitle'] }}
</p>
<div class="grid md:grid-cols-3 gap-8 py-8 slide-up delay-400">
@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 slide-up delay-500">
<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>