@extends('layouts.app') @push('meta') @include('components.meta', [ 'title' => __('seo.HOME_TITLE'), 'desc' => __('seo.HOME_DESC'), 'image' => 'img/logo.webp', ]) @endpush @section('content') @include('components.landing.hero-section') @include('components.landing.industry-surveys', [ 'hasMainTitle' => true, 'reverse' => true, 'mainTitle' => $homepageSections -> insight_surveys_main_title, 'titleParts' => $homepageSections -> insight_surveys_title, 'desc' => $homepageSections -> insight_surveys_desc, 'hasButton' => true, 'link' => route('surveys', ['lang' => App::getLocale()]), 'surveys' => $surveys, ]) @include('components.landing.banner', [ 'reverse' => false, 'hasMainTitle' => true, 'mainTitle' => $homepageSections->who_we_are_main_title, 'titleParts' => $homepageSections->who_we_are_title, 'desc' => $homepageSections->who_we_are_desc, 'listItems' => $homepageSections->who_we_are_list, 'hasButton' => true, 'image' => Storage::url($homepageSections->who_we_are_image), 'link' => route('ourVision', ['lang' => App::getLocale()]), ]) @include('components.landing.our-services') @include('components.landing.banner', [ 'hasMainTitle' => true, 'reverse' => true, 'mainTitle' => $homepageSections->why_us_main_title, 'titleParts' => $homepageSections->why_us_title, 'desc' => $homepageSections->why_us_desc, 'hasButton' => true, 'link' => route('expertise', ['lang' => App::getLocale()]), 'image' => Storage::url($homepageSections->why_us_image), ]) @include('components.landing.testimonials') @include('components.landing.faqs', [ 'faqs' => $homepageSections->faqs, 'mainTitle' => $homepageSections->faqs_main_title, 'titleParts' => $homepageSections->faqs_title, 'desc' => $homepageSections->faqs_desc, ]) @endsection @push('scripts') @endpush