22 lines
744 B
PHP
22 lines
744 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">
|
|
{!! $content['title'] !!}
|
|
</h2>
|
|
|
|
<p class="text-large text-secondary-foreground max-w-2xl mx-auto leading-relaxed">
|
|
{{ $content['subtitle'] }}
|
|
</p>
|
|
|
|
<div class="pt-4">
|
|
<a
|
|
href="{{ $content['button_link'] }}"
|
|
class="btn-primary-accent px-8 py-4 text-lg"
|
|
>
|
|
{{ $content['button_text'] }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|