@php
$isB2C = config('app.platform') == 'b2c';
@endphp
@yield('title')
@yield('og-meta-tags')
@if ($isB2C)
@else
@endif
@yield('seo-tags')
@yield('add-head-tags')
@livewireStyles
@yield('styles')
@yield('header-scripts')
@if ($isB2C)
@include('inc.B2C._toasts')
@endif
@if ($isB2C)
@if (!$user)
@include('front.partials.landing._header-not-logged-in-v-2')
@else
@include('front.partials.landing._header-logged-in-v-2')
@endif
@endif
@yield('content')
@yield('modals-and-offcanvas')
@routes()
@if ($isB2C)
@endif
@yield('add-scripts')