@vite(['resources/css/app.css'])
@if(isset($event->show_navigation) && $event->show_navigation)
@include('components.templates.common.navigation', ['event' => $event])
@endif
@if(isset($event->show_hero) && $event->show_hero)
@templateComponent('hero', $event, 'sections')
@endif
@if(isset($isPreview) && $isPreview)
@templateComponent('test', $event, 'sections')
@endif
@if(isset($event->show_about) && $event->show_about)
@templateComponent('about', $event, 'sections')
@endif
@if($event->speakers && $event->speakers->count() > 0)
@templateComponent('speakers', $event, 'sections')
@endif
@if($event->scheduleItems && $event->scheduleItems->count() > 0)
@templateComponent('schedule', $event, 'sections')
@endif
@if($event->ticketTypes && $event->ticketTypes->count() > 0)
@templateComponent('pricing', $event, 'sections')
@endif
@if(isset($event->show_contact) && $event->show_contact)
@templateComponent('contact', $event, 'sections')
@endif
@templateComponent('footer', $event, 'sections')
@vite(['resources/js/app.js'])
@stack('scripts')