@props(['data' => []])
@if(!empty($data['section_title']) || !empty($data['section_subtitle']))
@if(!empty($data['section_badge']))

{{ $data['section_badge'] }}

@endif @if(!empty($data['section_title']))

{{ $data['section_title'] }}

@endif @if(!empty($data['section_subtitle']))

{{ $data['section_subtitle'] }}

@endif
@endif @if(!empty($data['items']))
@foreach($data['items'] as $item)
{{ $item['title'] ?? '' }}
@if(!empty($item['category'])) {{ $item['category'] }} @endif @if(!empty($item['title']))

{{ $item['title'] }}

@endif @if(!empty($item['description']))

{{ $item['description'] }}

@endif
@endforeach
@endif