@props([
'contents' => [
'hero' => true,
'offer' => false,
'about' => true,
'banner' => false,
'category' => true,
],
])
@if($contents['hero'])
@livewire('home.hero-section')
@endif
@if($contents['about'])
@endif
@if($contents['offer'])
@endif
@if($contents['banner'])
@endif
@if($contents['category'])
@endif