{% block title %}Antò Mela{% endblock %}
{# Tailwind par CDN ou ta propre compilation #}
{% block stylesheets %}
{# Pré-connexion et chargement des polices #}
{% endblock %}
{# Importmap/AssetMapper : Charger AlpineJS et Motion One #}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
{# Ton propre app.js si tu en as un (pour Alpine, Motion One, etc.) #}
{# Barre de navigation si l'utilisateur est connecté (z-index ajouté précédemment peut rester ou être enlevé) #}
{% if app.user %}
{% else %}
{# Optionnel: afficher les liens Connexion/Inscription si non connecté #}
{# #}
{% endif %}
{% block body %}{% endblock %}