@if ($breadcrumb ?? false)
@include('partials.components.breadcrumb', [
'class' => ($align ?? 'default') == 'center' ? 'text-center justify-center' : '',
])
@endif
@include('partials.components.huge-title', [
'title' => $title,
'class' => 'font-bold ' . ($breadcrumb ?? false ? ' mt-11' : ''),
])
@if ($intro ?? false)
@include('partials.components.wysiwyg', [
'text' => $intro,
'class' => 'text-lg',
])
@endif
@if ($ctas ?? false)
@include('partials.components.ctas', [
'class' => 'mt-8! first:mt-0!',
])
@endif
@if ($image ?? false)
{!! ResponsivePics::get_image(
$image,
'xs:300, md:700, lg:1440',
0,
'w-full h-full ' . ($imageFull ?? false ? 'block object-cover' : 'object-fit max-w-[80vw] mx-auto'),
false,
true,
) !!}
@endif
@if ($form)