{{-- SEO from admin (Admin → CMS → Global SEO Defaults). When the admin saves values there, every page on the site picks them up automatically — title, description, OG, and Twitter card all from the same data so social previews stay consistent. --}} @php $__ldTitle = \App\Models\SystemSetting::get('seo_default_title', config('app.name') . ' — AI-Powered Email Automation'); $__ldDesc = \App\Models\SystemSetting::get('seo_default_description', 'All-in-one AI email platform. Unified inbox, smart replies, campaigns, CRM, pipeline, 5-channel messaging. Self-hosted.'); $__ldOg = \App\Models\SystemSetting::get('seo_og_image', ''); @endphp {{ $__ldTitle }} @if($__ldOg) @else @endif @php $__landFav = \App\Models\SystemSetting::get('favicon'); $__pwaOn = \App\Models\SystemSetting::get('pwa_enabled', 'false') === 'true'; @endphp @if($__landFav) @else @endif @if($__pwaOn) @else @endif @vite(['resources/css/landing.css', 'resources/js/landing-app.js']) @yield('content') @if($__pwaOn ?? false) @endif