@extends('layouts.app') @php use App\Helpers\MarketContent; use App\Helpers\SeoHelper; $locale = app()->getLocale(); $aboutContent = $aboutContent ?? MarketContent::about($locale); $pageSeo = $aboutContent['metadata']; $aboutText = static fn (string $path, mixed $default = '') => data_get($aboutContent, $path, $default); $localizedRoute = function($routeName, $params = []) use ($locale) { return SeoHelper::localizedRoute($routeName, $params, $locale); }; $aboutStats = $aboutContent['stats']; $aboutServices = $aboutContent['services']; $aboutValues = $aboutContent['values']; $aboutFaqs = $aboutContent['faqs']; @endphp @section('title', $pageSeo['title']) @section('meta_description', $pageSeo['description']) @section('meta_keywords', $pageSeo['keywords']) @section('og_image', asset($pageSeo['image'])) @push('schema') @endpush @push('styles') @endpush @section('content')

{{ $aboutText('hero.title_1') }}
{{ $aboutText('hero.title_2') }}

{{ $aboutText('hero.description') }}

@foreach($aboutStats as $stat)
{{ $stat['value'] }}
{{ $stat['label'] }}
@endforeach

{{ $aboutText('story.title') }}

{!! $aboutText('story.paragraphs.0') !!}

{!! $aboutText('story.paragraphs.1') !!}

{!! $aboutText('story.paragraphs.2') !!}

{{ $aboutText('services_heading') }}

{{ __('messages.nav.services') }}
@foreach($aboutServices as $service)

{{ $service['title'] }}

{{ $service['description'] }}

@endforeach

{{ $aboutText('trust.title') }}

@foreach(data_get($aboutContent, 'trust.blocks', []) as $block)

{{ $block['title'] }}

{{ $block['description'] }}

    @foreach($block['points'] as $point)
  • {{ $point }}
  • @endforeach
@endforeach

{{ $aboutText('mission.title') }}

{{ $aboutText('mission.content') }}

{{ $aboutText('values_heading') }}

@foreach($aboutValues as $value)

{{ $value['title'] }}

{{ $value['description'] }}

@endforeach

{{ $aboutText('faq_heading') }}

@foreach($aboutFaqs as $faq)

{{ $faq['question'] }}

{{ $faq['answer'] }}

@endforeach

{{ $aboutText('cta.title') }}

{{ $aboutText('cta.description') }}

{{ $aboutText('cta.button') }}
@include('components.explore-site-section') @endsection