{{-- Same CDN stack as app.blade.php for consistency --}} {{-- Splash-specific display fonts (Syne bold + DM Sans body) --}} @php /* * Brand tokens — identical naming convention to app.blade.php's theme system. * The splash layout reads from the same config/hrms.php and config/themes.php * so the default brand colours stay in sync with the authenticated app. */ $defaultTheme = config('themes.navy', []); $brandPrimary = $defaultTheme['primary'] ?? '#0e2a47'; $brandAccent = $defaultTheme['accent'] ?? '#163a5f'; $brandGold = $defaultTheme['gold'] ?? '#2cb5a0'; // teal used as brand accent on splash $company = config('hrms.company', 'Synergy HRM'); $companyCode = config('hrms.company_code', 'HR'); @endphp @stack('styles') {{-- Custom cursor (same micro-interaction as the standalone splash) --}}
{{-- ── Navigation ────────────────────────────────────────────────────────── --}} {{-- ── Page content ──────────────────────────────────────────────────────── --}}
@yield('content')
{{-- ── Footer ─────────────────────────────────────────────────────────────── --}} {{-- ── Scripts (Bootstrap JS shared with app.blade.php) ─────────────────── --}} @stack('scripts')