<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Previoo - Admin{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body class="bg-gray-100 flex flex-col">
<nav class="bg-white shadow-lg">
<div class="max-w-6xl mx-auto px-4">
<div id="header" class="flex justify-between">
<div class="flex justify-between w-full">
<div>
<a href="#" class="flex items-center p-2">
<img src="{{ asset('build/yeati-full.png') }}" alt="Logo" class="w-36">
</a>
</div>
<div class="hidden md:flex items-center space-x-1">
<a href="/factures"
class="text-lg font-light p-4 hover:text-primary transition duration-300 text-gray-800">Factures</a>
<a href="/clients"
class="text-lg font-light p-4 hover:text-primary transition duration-300 text-gray-800">Clients</a>
<a href="/resultats"
class="text-lg font-light p-4 hover:text-primary transition duration-300 text-gray-800">Résultats</a>
<a href="/statistiques"
class="text-lg font-light p-4 hover:text-primary transition duration-300 text-gray-800">Statistiques</a>
</div>
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button class="outline-none mobile-menu-button">
<svg class="w-10 h-10 text-gray-500" x-show="!showMenu" fill="none" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- mobile menu -->
<div class="hidden mobile-menu">
<ul class="">
<li><a href="/factures" class="block text-center px-2 py-4">Factures</a></li>
<li><a href="/clients" class="block text-center px-2 py-4">Compte client</a></li>
<li><a href="/resultats" class="block text-center px-2 py-4">Résultats</a></li>
<li><a href="/statistiques" class="block text-center px-2 py-4">Statistiques</a></li>
</ul>
</div>
</nav>
<div id="app" class="w-11/12 mx-auto mt-8">
{% block body %}{% endblock %}
</div>
</body>
</html>