@include('site._includes.mini-banner', [
'banner_desktop' => $about->banner_desktop,
'banner_mobile' => $about->banner_mobile,
'title' => $about->banner_title,
])
@if ($about->tag || $about->title || $about->description)
@if (!empty($about->tag))
@endif
{{ $about->title }}
{!! $about->description !!}
@endif
@if (!$about->hide_gallery && !empty($about->gallery))
@foreach ($about->gallery as $image)
@endforeach
@endif;
@if (!$about->hide_values && !empty($about->values))
@if (!empty($about->tag_values))
/
/
/
{{ $about->tag_values }}
@endif
{{ $about->title_values }}
@foreach ($about->values as $value)
@if(!empty($value['icon']))
![{{ $value['title'] }}]({{ asset()
@endif
{{ $value['title'] }}
{!! $value['description'] !!}
@endforeach
@endif
@if($about->video_media_type !== 'none' && ($about->youtube_link || $about->video_file))
@php
$video_media = ($about->video_media_type == "youtube") ? $about->youtube_link : $about->video_file;
@endphp
@endif
@if (!$about->hide_brands && !empty($about->brands))
@foreach ($about->brands as $brand)
@endforeach
@endif
@endsection