@if ($slide['header_title'] ?? false)
@include('partials.components.huge-title', [
'title' => $slide['header_title'],
'class' =>
'mt-5 mb-0! max-md:bg-white max-md:rounded-tr-lg max-md:!text-xl max-md:p-5 max-md:text-center',
'balise' => $index === 0 ? 'h1' : 'h2',
])
@endif
@if ($slide['header_subtitle'] ?? false)
{!! $slide['header_subtitle'] !!}
@endif
@if ($slide['header_intro'] ?? false)
@include('partials.components.introduction', [
'introduction' => $slide['header_intro'],
'class' => 'text-xl leading-tight mt-0 ',
])
@endif
@if (!empty($slide['header_ctas']))
@include('partials.components.ctas', [
'ctas' => $slide['header_ctas'],
'btnClass' =>
'bg-white/10 backdrop-blur border border-primary/10 hover:bg-primary transition-colors',
])
@endif