@extends('frontend.layouts.master') @section('title', __('front.about.page_title') . ' - Novalynk') @section('styles') @endsection @section('content') @php $localizedAboutTitle = app()->isLocale('en') ? __('front.content.about.title') : ($settings['about_title'] ?? __('front.content.about.title')); $localizedAboutDescription = app()->isLocale('en') ? __('front.content.about.description') : ($settings['about_description'] ?? __('front.content.about.description')); $localizedAboutMission = app()->isLocale('en') ? __('front.content.about.mission') : ($settings['about_mission'] ?? __('front.content.about.mission')); @endphp

{{ __('front.about.page_title') }}

{{ __('front.about.page_subtitle') }}

{{ __('front.about.image_alt') }}

{{ $localizedAboutTitle }}

{{ $localizedAboutDescription }}

{{ __('front.about.intro') }}

{{ __('front.about.feature_integration_title') }}
{{ __('front.about.feature_integration_label') }}
{{ __('front.about.feature_automation_title') }}
{{ __('front.about.feature_automation_label') }}
{{ __('front.about.feature_scalability_title') }}
{{ __('front.about.feature_scalability_label') }}
{{ __('front.about.feature_connected_life_title') }}
{{ __('front.about.feature_connected_life_label') }}

{{ __('front.about.vision_title') }}

{{ __('front.about.vision_text') }}

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

{{ $localizedAboutMission }}

@if(count($teamMembers) > 0)

{{ __('front.about.team_title') }}

{{ __('front.about.team_subtitle') }}

@foreach($teamMembers as $member)
@if($member->photo) {{ $member->name }} @else
@endif

{{ $member->name }}

{{ $member->position }}

@if($member->bio)

{{ $member->bio }}

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

{{ __('front.about.cta_title') }}

{{ __('front.about.cta_desc') }}

{{ __('front.common.contact_us') }}
@endsection