@extends('layouts.public') @section('title', config('app.name') . ' — ' . __('landing.hero_title')) @section('meta_description', __('landing.hero_subtitle')) @section('content') {{-- ============================ HERO ============================ --}}
{{ __('landing.hero_eyebrow') }}

{{ __('landing.hero_title') }}

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

5
{{ __('landing.hero_stat_1') }}
90
{{ __('landing.hero_stat_2') }}
2
{{ __('landing.hero_stat_3') }}
{{-- Menu preview mock --}}

{{ __('patients.target_calories') }}

1,840 {{ __('common.kcal') }}

{{ __('landing.diet_deficit', ['percent' => 20]) }}
@foreach ([['patients.protein', '138', 'bg-brand-50 text-brand-700'], ['patients.carbs', '184', 'bg-amber-50 text-amber-700'], ['patients.fat', '61', 'bg-sky-50 text-sky-700']] as [$key, $value, $tone])

{{ $value }}{{ __('common.grams') }}

{{ __($key) }}

@endforeach
    @foreach ([['breakfast', '460'], ['snack_am', '184'], ['lunch', '644'], ['snack_pm', '184'], ['dinner', '368']] as [$slot, $kcal])
  • {{ __('menus.slots.' . $slot) }} {{ $kcal }} {{ __('common.kcal') }}
  • @endforeach

{{ __('patients.bmr') }} → {{ __('patients.tdee') }}

1,512 → 2,300 {{ __('common.kcal') }}

{{-- ======================= HOW IT WORKS ========================= --}}
{{ __('landing.how_eyebrow') }}

{{ __('landing.how_title') }}

{{ __('landing.how_subtitle') }}

    @foreach ([1, 2, 3, 4, 5] as $step)
  1. {{ $step }}

    {{ __('landing.step_' . $step . '_title') }}

    {{ __('landing.step_' . $step . '_body') }}

  2. @endforeach
{{-- The equation, spelled out --}}

Mifflin-St Jeor

BMR = 10 × kg + 6.25 × cm − 5 × age + 5 / − 161

TDEE

BMR × 1.20 … 1.90

{{ __('patients.activity.sedentary') }} → {{ __('patients.activity.athlete') }}

{{ __('patients.target_calories') }}

TDEE × (1 + adjustment)

−20% … +10%, floored at 1,200 / 1,500 {{ __('common.kcal') }}

{{-- ======================= DIET SYSTEMS ========================= --}}
{{ __('landing.diets_eyebrow') }}

{{ __('landing.diets_title') }}

{{ __('landing.diets_subtitle') }}

@foreach ($dietTypes as $diet) @php $adjustment = (float) $diet->calorie_adjustment; $mealCount = count($diet->mealDistribution()); @endphp

{{ $diet->name }}

@if ($diet->requires_medical_clearance) {{ __('landing.diet_clearance') }} @endif

{{ $diet->description }}

{{ __('landing.diet_macros') }}

{{ __('patients.protein') }} {{ $diet->protein_percent }}% {{ __('patients.carbs') }} {{ $diet->carb_percent }}% {{ __('patients.fat') }} {{ $diet->fat_percent }}%
{{ __('landing.diet_adjustment') }} @if ($adjustment < 0) {{ __('landing.diet_deficit', ['percent' => abs((int) round($adjustment * 100))]) }} @elseif ($adjustment > 0) {{ __('landing.diet_surplus', ['percent' => (int) round($adjustment * 100)]) }} @else {{ __('landing.diet_maintenance') }} @endif
{{ __('landing.diet_meals') }} {{ __('landing.diet_meals_count', ['count' => $mealCount]) }}
@endforeach
{{-- ========================== AUDIENCE ========================== --}}
{{ __('landing.audience_eyebrow') }}

{{ __('landing.audience_title') }}

@foreach ([['club', 'bg-brand-gradient'], ['clinic', 'bg-ink-gradient']] as [$key, $tone])

{{ __('landing.' . $key . '_title') }}

{{ __('landing.' . $key . '_body') }}

    @foreach ([1, 2, 3, 4] as $i)
  • {{ __('landing.' . $key . '_point_' . $i) }}
  • @endforeach
@endforeach
{{-- ========================== FEATURES ========================== --}}
{{ __('landing.features_eyebrow') }}

{{ __('landing.features_title') }}

@foreach ([1, 2, 3, 4, 5, 6] as $i)
{{ str_pad((string) $i, 2, '0', STR_PAD_LEFT) }}

{{ __('landing.feature_' . $i . '_title') }}

{{ __('landing.feature_' . $i . '_body') }}

@endforeach
{{-- =========================== PRICING ========================== --}}
{{ __('landing.pricing_eyebrow') }}

{{ __('landing.pricing_title') }}

{{ __('landing.pricing_subtitle') }}

{{ __('landing.pricing_monthly') }}
{{ __('landing.pricing_yearly') }} {{ __('landing.pricing_yearly_note') }}
@foreach ($plans as $plan) @endforeach

{{ __('landing.pricing_trial', ['days' => config('smartcarb.trial_days')]) }}

{{-- =========================== DEMO FORM ======================== --}}

{{ __('landing.cta_title') }}

{{ __('landing.cta_body') }}

@foreach ([1, 2, 3] as $i)
{{ $i }}

{{ __('landing.step_' . $i . '_title') }}

{{ Str::limit(__('landing.step_' . $i . '_body'), 110) }}

@endforeach

{{ __('landing.form_title') }}

@csrf
@endsection