{{-- @include('partials.components.breadcrumb', [
'class' =>
(($align ?? 'default') == 'center' ? 'text-center justify-center' : '') .
($image ?? false ? ' text-light' : ' text-primary'),
]) --}}
@include('partials.components.huge-title', ['title' => $title, 'class' => 'font-bold'])
@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:500, sm:700, lg:1440',
0,
'w-full h-full block object-cover',
false,
true,
) !!}
@endif