<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>
{% block title %}Talaria
{% endblock %}
</title>
<link
rel="icon" href="{{ asset('assets/images/Icone_Talaria.png') }}">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
<link rel="stylesheet" href="{{ asset("assets/css/main.css") }}">
<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=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body id="corpsPage" class="transition-all duration-470 ease-in-out">
{% include "components/header.html.twig" %}
{% for type, messages in app.flashes %}
{% for message in messages %}
<div class="text-white flash px-4 py-2 transition-opacity duration-500 ease-in-out opacity-100 {{ type }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
{% block body %}{% endblock %}
</body>
</html>