@extends('layouts.public') @section('title', setting('about_title', __('About ABACO INFRA'))) @section('meta_description', setting('about_intro')) @section('content') {{-- Split editorial band: the introduction beside a single premium image. --}} @if ($splitImage = setting('about_split_image', setting('about_banner')))

{{ setting('home_about_title', __('Engineering excellence across Asia and Africa')) }}

@if ($intro = setting('about_intro'))

{{ $intro }}

@endif
@foreach ([ __('Established') => setting('about_established'), __('Certification') => setting('about_certification'), ] as $label => $value) @if (filled($value))
{{ $label }}
{{ $value }}
@endif @endforeach
@endif {{-- Introduction and background (SOW 2.2 / 2.3) --}}
@if ($body = setting('about_body'))
{!! $body !!}
@elseif (! setting('about_split_image') && ! setting('about_banner')) {{-- No editorial band was rendered above, so carry the intro here. --}}

{{ setting('about_intro') }}

@endif {{-- Timeline from establishment to current presence (SOW 2.13) --}} @if ($milestones = setting()->json('about_timeline'))

{{ __('Our journey') }}

    @foreach ($milestones as $milestone)
  1. {{ $milestone['year'] ?? '' }}

    {{ $milestone['text'] ?? $milestone }}

  2. @endforeach
@endif
{{-- Organisational statistics (SOW 2.11) --}} @if ($statistics->isNotEmpty())
@foreach ($statistics->take(4) as $statistic) @endforeach
@endif {{-- Core sectors (SOW 2.4) --}} @if ($sectors->isNotEmpty())
@endif {{-- Leadership insight (SOW 2.10) --}} @if ($quote = setting('about_leadership_quote'))
{{ $quote }}
@if ($photo = setting('about_leadership_photo')) @endif

{{ setting('about_leadership_name') }}

{{ setting('about_leadership_role') }}

@endif {{-- Leadership team --}} @if ($leadership->isNotEmpty())
{{ __('Full team') }}
@foreach ($leadership as $member) @include('public.partials.team-card', ['member' => $member]) @endforeach
@endif {{-- Achievements (SOW 2.9) --}} @if ($achievements->isNotEmpty())
@endif {{-- Geographical presence (SOW 2.5) --}} @include('public.partials.locations-cta') {{-- Calls to action (SOW 2.14) --}}
{{ __('Explore our projects') }} {{ __('View sector expertise') }} {{ __('Contact our experts') }}
@endsection