@extends('layouts.app')
@section('title', $title ?? __('pages.home_title'))
{{-- VideoObject for the presentation video in the approach section --}}
@section('json-ld')
@php
use App\Helpers\PresentationVideo;
$presentationVideo = PresentationVideo::assets();
@endphp
@endsection
@section('content')
@include('sections.home.hero')
@include('sections.home.approach')
@include('sections.home.solutions')
@include('sections.home.products')
@include('sections.home.innovation')
@include('sections.home.values')
@include('sections.home.collaborators')
@include('sections.home.blog-preview')
@include('sections.home.hire')
@endsection