{{-- Shared layout for public-facing /join pages. Branded per-tenant. --}} @php use App\Services\Config\SiteConfig; $cfg = app(SiteConfig::class); $school = app()->bound('current_school') ? app('current_school') : null; $primary = $cfg->get('primary_color', '#960000'); $cta = $cfg->get('cta_color', '#88C808'); $bg = $cfg->get('bg_color', '#FBF9F4'); $ink = $cfg->get('ink_color', '#2B2B2B'); $siteName = $cfg->get('site_name', 'AGS Vocab'); $logo = $cfg->get('logo_path', 'brand/logo.png'); $font = $cfg->get('primary_font', 'Raleway'); @endphp