@props([ 'eyebrow' => null, 'title' => null, 'description' => null, 'titleTag' => 'h2', ])
@if ($eyebrow)
{{ $eyebrow }}
@endif @if ($title) @if ($titleTag === 'h1')

{{ $title }}

@elseif ($titleTag === 'h3')

{{ $title }}

@else

{{ $title }}

@endif @endif @if ($description)

{{ $description }}

@endif
@if (trim((string) $slot) !== '')
{{ $slot }}
@endif