@extends(get_view('index'))
@section('title') {{ __('About Us') }} - @endsection
@section('menu-active-about-us') active @endsection
@section('header')
@endsection
@section('content')
@include(get_view('components.pages.page-title'), ['title' => __('About Us')])
@if ( Site::about_us() != null )
@if ( Site::about_us()->content != null )
{!! Site::about_us()->content ?? '' !!}
@endif
@endif
@if ( count(Site::categories()) > 0 )
{{ translate('what_we_do') }}
{{ translate('what_we_do_text') }}.
@foreach (Site::categories() as $category)
@include(get_view('components.category.single-category'))
@endforeach
@endif
@endsection
@section('footer')
@endsection