@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]) @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) @if ($imageDisplay == 'default')
{!! ResponsivePics::get_image( $image, 'xs:300, md:700, lg:1440', 0, 'w-full h-full object-cover absolute top-0 left-0 opacity-90', false, true, ) !!}
@elseif ($imageDisplay == 'after') {!! ResponsivePics::get_image( $image, 'xs:300, md:700, lg:1440', 9 / 16, 'w-full h-full object-cover w-full rounded-sm mt-24 -mb-24 z-10 relative', false, true, ) !!} @endif @endif