@php $heroPv = __('budgets.landing.hero_preview'); $how = __('budgets.landing.how'); $trust = __('budgets.landing.trust'); $features = __('budgets.landing.features'); $pricing = __('budgets.landing.pricing'); $footer = __('budgets.landing.footer'); $chartHeights = [40, 65, 45, 80, 55, 70, 90, 60, 75, 50, 85, 65]; $previewLabels = [$heroPv['balance'], $heroPv['income'], $heroPv['expenses'], $heroPv['saved']]; $previewValues = $heroPv['values'] ?? ['12.450,00 €', '4.200,00 €', '2.180,00 €', '2.020,00 €']; $previewTones = ['text-foreground', 'text-primary', 'text-expense', 'text-primary']; $isAuthenticated = auth()->check(); $loginUrl = $isAuthenticated ? route('dashboard') : route('login'); $getStartedUrl = $isAuthenticated ? route('onboarding') : route('register'); @endphp
{{ __('budgets.landing.skip_content') }}
{{ $brandName }}
@csrf
{{ __('budgets.landing.nav_login') }} {{ __('budgets.landing.nav_get_started') }}
{{-- Hero (matches HeroSection.tsx) --}}
{{ __('budgets.landing.hero_badge') }}

{{ __('budgets.landing.hero_title1') }}
{{ __('budgets.landing.hero_title2') }}

{{ __('budgets.landing.hero_subtitle') }}

{{ __('budgets.landing.hero_trust1') }}
{{ __('budgets.landing.hero_trust2') }}
{{ __('budgets.landing.hero_trust3') }}
@foreach ($previewLabels as $i => $label)

{{ $label }}

{{ $previewValues[$i] ?? '—' }}

@endforeach
@foreach ($chartHeights as $h)
@endforeach
{{-- How it works (HowItWorksSection.tsx) --}}

{{ $how['title_1'] }}
{{ $how['title_2'] }}

{{ $how['subtitle'] }}

    @foreach ($how['steps'] as $step)
  1. {{ $step['title'] }}

    {{ $step['description'] }}

  2. @endforeach

{{ $how['snapshot_label'] }}

@foreach ($how['snapshot_cards'] as $item)

{{ $item['label'] }}

{{ $item['value'] }}

@endforeach

{{ $how['subscription_health'] }}

{{ $how['updated_now'] }}

@foreach ($how['subscription_rows'] as $row)

{{ $row['name'] }}

{{ $row['status'] }}

@endforeach
{{-- Trust (TrustSection.tsx) --}}
@foreach ($trust as $item)

{{ $item['label'] }}

{{ $item['desc'] }}

@endforeach
{{-- Feature overviews (FeatureOverviewsSection.tsx) --}}

{{ __('budgets.landing.features_intro_title') }}{{ __('budgets.landing.features_intro_gradient') }}

{{ __('budgets.landing.features_intro_subtitle') }}

@foreach ($features as $idx => $feature) @php $flip = $idx % 2 === 1; @endphp
{{ $feature['preview_title'] }}

{{ $feature['title'] }}

{{ $feature['description'] }}

    @foreach ($feature['bullets'] as $b)
  • {{ $b }}
  • @endforeach

{{ __('budgets.landing.feature_focus') }}

{{ $feature['title'] }}

{{ __('budgets.landing.feature_updated') }}
@foreach ($feature['preview_metrics'] as $m)

{{ $m['label'] }}

{{ $m['value'] }}

@endforeach

{{ __('budgets.landing.feature_insights') }}

{{ __('budgets.landing.feature_glance') }}

@foreach ($feature['preview_list'] as $row)

{{ $row['label'] }}

{{ $row['status'] }}

@endforeach
@endforeach
{{-- Pricing (PricingSection.tsx) --}}

{{ $pricing['title'] }}

{{ $pricing['subtitle'] }}

{{ $pricing['discount_note'] }}

@foreach ($pricing['plans'] as $plan)
@if (! empty($plan['highlighted']))
{{ $pricing['most_popular'] }}
@endif

{{ $plan['name'] }}

{{ $plan['description'] }}

@if (isset($plan['monthly_price'])) {{ $plan['monthly_price'] }} {{ $plan['monthly_period'] }} @else {{ $plan['price'] }} {{ $plan['period'] }} @endif
    @foreach ($plan['features'] as $f)
  • {{ $f }}
  • @endforeach
{{ $plan['cta'] }}
@endforeach

{{ $pricing['trial_footer'] }}

{{-- Footer (FooterSection.tsx) --}}