@extends('layouts.app') @section('title', __('about.page_title')) @section('meta_description', __('about.meta_description')) @section('content')
{{ __('about.mission_subtitle') }}

{!! __('about.mission_title') !!}

{{ $page?->teaser ?? __('about.mission_text') }}

@if($page?->content)
@sanitized($page->content)
@else
  • {{ __('about.feature_1') }}
  • {{ __('about.feature_2') }}
  • {{ __('about.feature_3') }}
@endif
@if($partners->isNotEmpty())
@foreach($partners as $partner)
@if($partner->link) {{ $partner->name }} @else {{ $partner->name }} @endif
@endforeach
@endif
{{ __('about.trainers_subtitle') }}

{{ __('about.trainers_title') }}

{{ __('about.trainers_text') }}

{{ __('about.cta_trainers') }}
@if($trainersPreview->isNotEmpty())
@foreach($trainersPreview as $member) @endforeach
@else @endif
@endsection