{{-- Primary SEO Meta Tags --}}
{{ $title ?? config('app.name') }}
@if (isset($seo))
{{-- Open Graph / Facebook --}}
{{-- Twitter Card --}}
@endif {{-- Favicon from Business Settings --}} @if (!empty($company['favicon']))
@else
@endif {{-- Additional SEO Meta Tags --}}
{{-- Website Slug for per-website theme/language preferences --}}
{{-- Google Fonts --}}
{{-- Vite Assets --}} {{ module_vite('build-' . $frontThemeName, 'resources/views/themes/' . $frontThemeName . '/assets/app.css', storage_path('vite-' . $frontThemeName . '.hot')) }} {{-- Dynamic Theme Colors --}} @if (isset($theme)) @endif {{-- Page Specific Styles --}} @stack('styles') {{-- Custom CSS from Business Settings --}} @if (!empty($customCss)) @endif {{-- Note: Progress bar, header, and other critical styles are now in app.css --}} @livewireStyles {{-- Progress Loading Bar --}}
{{-- Main Content (includes header, page sections, and footer from website_builder) --}} {{ $slot }} {{-- Scroll to Top Button --}}
{{-- Vite JS --}} {{ module_vite('build-' . $frontThemeName, 'resources/views/themes/' . $frontThemeName . '/assets/app.js', storage_path('vite-' . $frontThemeName . '.hot')) }} @livewireScripts {{-- Page Specific Scripts --}} @stack('scripts') {{-- Custom JavaScript from Business Settings --}} @if (!empty($customJs)) @endif