<!DOCTYPE html>
{# Utilisation dynamique de la locale de l'application #}
<html lang="{{ app.request.locale }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{# Traduction du titre de la page pour le SEO #}
<title>{{ 'page_title'|trans }} - AFI CARGO</title>
{% block stylesheets %}
<link href="{{ asset('dist/images/logo.png') }}" rel="icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.4.0/css/lightgallery-bundle.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.css">
<link href="{{ asset('dist/css/aficargo.css') }}" rel="stylesheet">
{% endblock %}
</head>
<body class="text-gray-900">
{# Navigation #}
{{ include('partials/_navbar.html.twig') }}
<main>
{{ include('partials/partialsHome/_hero.html.twig') }}
{{ include('partials/partialsHome/_company.html.twig') }}
{{ include('partials/partialsHome/_adversting.html.twig') }}
{{ include('partials/partialsHome/_about.html.twig') }}
{{ include('partials/partialsHome/_services.html.twig') }}
{{ include('partials/partialsHome/_ourNetwork.html.twig') }}
{{ include('partials/partialsHome/_afiBusiness.html.twig') }}
{{ include('partials/partialsHome/_gallery.html.twig') }}
{{ include('partials/partialsHome/_testimonials.html.twig') }}
{{ include('partials/partialsHome/_tracking.html.twig') }}
{{ include('partials/partialsHome/_quote.html.twig') }}
{{ include('partials/partialsHome/_offices.html.twig') }}
{{ include('partials/partialsHome/_contacts.html.twig') }}
</main>
{{ include('partials/_footer.html.twig') }}
{# Éléments flottants et Modales #}
{{ include('partials/partialsHome/_whatsapp.html.twig') }}
{{ include('partials/partialsHome/_modalinquiry.html.twig') }}
{# Scripts #}
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.4.0/lightgallery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.4.0/plugins/zoom/lg-zoom.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.form/4.3.0/jquery.form.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="{{ asset('dist/js/aficargo.js') }}"></script>
<script>
AOS.init({
duration: 1000,
once: true,
offset: 100
});
</script>
</body>
</html>