<!DOCTYPE html>
<html lang="{{ app.request.locale|default('fr') }}">
<head>
<meta charset="UTF-8">
<title>{% block title %}BPay – La plateforme de paiement digital en Afrique{% endblock %}</title>
<meta name="description" content="{% block meta_description %}
BPay est une plateforme de paiement digitale sécurisée permettant les paiements,
wallets électroniques, transferts et solutions financières modernes en Afrique.
{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ app.request.schemeAndHttpHost ~ app.request.pathInfo }}"/>
{# Open Graph / Réseaux sociaux #}
<meta property="og:title" content="{% block og_title %}BPay – Paiement digital nouvelle génération{% endblock %}">
<meta property="og:description" content="{{ block('meta_description')|striptags }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ app.request.schemeAndHttpHost ~ app.request.pathInfo }}">
<meta property="og:image" content="{{ asset('templates/bpay/img/og/bpay.png') }}">
<!-- Favicon -->
<link rel="icon" href="{{ asset('templates/bpay/img/favicon.jpg') }}">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Oswald:wght@500;600;700&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="{{ asset('templates/bpay/lib/owlcarousel/assets/owl.carousel.min.css') }}" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="{{ asset('templates/bpay/css/bootstrap.min.css') }}" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="{{ asset('templates/bpay/css/style.css') }}" rel="stylesheet">
{% block stylesheets %}{% endblock %}
</head>
<body class="{% block body_class %}{% endblock %}">
{% block body %}{% endblock %}
<!-- Back to Top -->
<a href="#" class="btn btn-primary py-3 fs-4 back-to-top">
<i class="bi bi-arrow-up"></i>
</a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="{{ asset('templates/bpay/lib/easing/easing.min.js') }}"></script>
<script src="{{ asset('templates/bpay/lib/waypoints/waypoints.min.js') }}"></script>
<script src="{{ asset('templates/bpay/lib/counterup/counterup.min.js') }}"></script>
<script src="{{ asset('templates/bpay/lib/owlcarousel/owl.carousel.min.js') }}"></script>
<!-- Template Javascript -->
<script src="{{ asset('templates/bpay/js/main.js') }}"></script>
{% block javascripts %}{% endblock %}
</body>
</html>