26 lines
873 B
PHP
26 lines
873 B
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="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>
|