@extends($defaultLayout) @section('content')
{{ block('faq-hero') }}
@livewire('faq-search', [])
@if(count($popular))

{{ __('faq.most popular title') }}

@foreach($popular as $faq)
@include(getView('components.faq_item'), ['heading' => 'h3'])
@endforeach
@endif

{{ __('faq.choose a theme title') }}

@forelse ($categories as $category)
@include(getView('components.card.faq-category'), [ 'item' => $category, 'heading' => 'h3' ])
@empty

{{ __('faq.no faq categories found') }}

@endforelse
{{ block('faq-index') }}
{{ block('cta-1') }}
{{ block('cta-2') }}
{{ block('cta-3') }}
@endsection