@extends('frontend.layouts.main') @section('content') @include('frontend.layouts.header')
@include('frontend.sections.hero-2') @if($brand_area == 'active')

{{ $home->brand->title ?? '' }}

@foreach($brands as $brand) @if($brand->lang == 'partner')
@endif @endforeach
@endif

{{ $home->cta->title ?? '' }}

@if($features_area == 'active')

{{ $home->features->title ?? '' }}

@include('frontend.sections.features',['limit'=>3])
@endif

{{ $home->platform->title ?? '' }}

{{ $home->platform->description ?? '' }}

{{ $home->platform->button_title ?? '' }}
@include('frontend.pricings')

{{ __('Testimonials') }}

@foreach($testimonials as $testimonial)

{{ Str::limit($testimonial->excerpt->value ?? '',200) }}

- {{ $testimonial->title ?? '' }}, {{ $testimonial->slug ?? '' }}

@endforeach

{{ $home->calltoaction->title ?? '' }}

{{ $home->calltoaction->button_title ?? '' }}
@foreach($faqs as $key => $faq) @if($faq->slug == 'bottom')

{{ $faq->excerpt->value ?? '' }}
@endif @endforeach

{{ __('Do you have more questions?') }}

{{ __('faq_description') }}

{{ __('Shoot a Direct Mail') }}
@endsection