@props([
'title' => null,
'description' => null,
'image' => null,
'radiothons' => null,
])
@if(!request()->hasHeader('X-Id-Mobile') && !str_contains(request()->userAgent(), 'WebView'))
@if((new Jenssegers\Agent\Agent)->isMobile())
@endif
@endif
{{-- Favicon Logic --}}
@if(config('services.google-tag-manager.enabled'))
@endif
@if( !app()->isProduction() || !config('app.robots.search_engine_index'))
@endif
{{-- If you are updating this please also update the url in wysiwyg.pcss --}}
{{-- @livewireStyles --}}
@vite(['resources/pcss/app.css'])
@stack('head.bottom')
@isset($radiothons)
@foreach($radiothons as $radiothon)
@if ($radiothon->radiothonFallback)
@else
{!! $radiothon->html_code !!}
@endif
@endforeach
@endisset
@if(isset($current_page_inactive) && $current_page_inactive)
PLEASE NOTE: THIS PAGE IS A PREVIEW ONLY AND IS CURRENTLY HIDDEN TO THE PUBLIC
@endif
@if(config('services.google-tag-manager.enabled'))
@endif
{{ $slot }}
@livewireScripts
@stack('body.bottom')
@yield('js')
@vite(['resources/js/app.js'])