@extends('layouts.app')
@section('title', 'About Us')
@push('styles')
@endpush
@section('content')
@include('layouts.partials.page_header', [
'title' => 'About Us',
'breadcrumbs' => [
['label' => 'Home', 'url' => route('home')],
['label' => 'About Us', 'url' => ''],
]
])
@include('pages.partials.why_choose')
@include('pages.partials.sliding')
@include('pages.partials.services')
@include('pages.partials.testimonial')
@include('pages.partials.newsletter')
@endsection