@extends(get_view('index'))
@section('title')
{{ __('About Us') }} -
@endsection
@section('header')
@endsection
@section('content')
@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