@extends('frontend.layouts.app') @section('title', 'About Us - ' . ($settings->company_name ?? 'Company')) @section('content')

About Us

Learn more about our story, mission, and the team behind our success.

@if($about)
@if($about->image_url) About @else
@endif

{{ $about->title }}

{{ $about->content }}

@if($about->mission_title || $about->vision_title)
@if($about->mission_title)

{{ $about->mission_title }}

{{ $about->mission_content }}

@endif @if($about->vision_title)

{{ $about->vision_title }}

{{ $about->vision_content }}

@endif
@endif @if($about->years_experience || $about->projects_completed || $about->happy_clients || $about->team_members)
@if($about->years_experience)

{{ $about->years_experience }}+

Years Experience

@endif @if($about->projects_completed)

{{ $about->projects_completed }}+

Projects Completed

@endif @if($about->happy_clients)

{{ $about->happy_clients }}+

Happy Clients

@endif @if($about->team_members)

{{ $about->team_members }}+

Team Members

@endif
@endif
@endif @if($team->count() > 0)

Meet Our Team

The talented people behind our success.

@foreach($team as $index => $member)
@if($member->photo_url) {{ $member->name }} @else
{{ substr($member->name, 0, 1) }}
@endif

{{ $member->name }}

{{ $member->position }}

@if($member->has_social_links)
@if($member->linkedin) @endif @if($member->twitter) @endif
@endif
@endforeach
@endif @endsection