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

22 lines
801 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="pt-4 slide-up delay-500">
<a
href="{{ $content['button_link'] }}"
class="btn-primary-accent px-8 py-4 text-lg"
>
{{ $content['button_text'] }}
</a>
</div>
</div>
</div>
</section>