@php $section['section_settings_background'] = null; @endphp @extends('partials.components.section', ['header' => false, 'ctaAfter' => false]) @section('section')
{{-- Text and button left --}} @if ($section['section_fields_before_call_to_action'] ?? false)
@include('partials.components.big-title', [ 'title' => $section['section_fields_before_call_to_action']['title'] ?? null, 'class' => 'mb-0!', ]) @if ($section['section_fields_before_call_to_action']['text'] ?? null)
{!! $section['section_fields_before_call_to_action']['text'] ?? null !!}
@endif @if ($section['section_fields_before_call_to_action']['button'] ?? false) @include('partials.components.cta', [ 'cta' => $section['section_fields_before_call_to_action']['button'] ?? null, 'btnClass' => 'border-dark bg-none text-body hover:text-dark !text-lg hover:bg-accent hover:border-accent', ]) @endif
@endif {{-- CTA Right --}}
{!! ResponsivePics::get_image($section['section_fields_image'], 'xs:200', 0, 'w-32 h-auto', false, true) !!}
@include('partials.components.section-header', ['section' => $section])
@if ($section['section_fields_buttons'] ?? false) @include('partials.components.ctas', [ 'ctas' => $section['section_fields_buttons'], 'class' => '0', 'align' => $align, ]) @endif
@overwrite