{{-- Assuming dark mode default --}}
@yield('title', config('app.name', 'Laravel'))
{{-- Removed Swiper CSS --}} @vite(['resources/css/app.css', 'resources/js/app.js']) @yield('styles')
{{-- Simple Top Navigation --}}
{{-- Logo with White Background --}}
{{-- Wrapper div for background/padding --}}
{{-- Inside layouts/app.blade.php and layouts/guest-landing.blade.php --}}
{{-- Keep existing wrapper styles --}}
{{-- Right Side Links/Icons --}}
{{-- Shopping Cart Icon with White Background --}} {{-- Wrapper div for background/padding/rounding --}}
View Cart
{{-- Cart Count Badge --}} @php try { $cartItemCount = Cart::getTotalQuantity(); } catch (\Exception $e) { $cartItemCount = 0; } @endphp @if ($cartItemCount > 0)
{{ $cartItemCount }}
@endif
{{-- Login Link --}}
Log in
{{-- Page Content --}}
@yield('content')
{{-- Footer --}}
{{-- Removed SwiperJS script --}} @stack('scripts')