feat(dashboard): Affiche les statistiques principales sur le tableau de bord.
```
This commit is contained in:
Serreau Jovann
2026-01-26 17:26:55 +01:00
parent a05aabe36e
commit acbdd66510
5 changed files with 143 additions and 13 deletions

View File

@@ -186,7 +186,35 @@
{% block body %}{% endblock %}
</div>
</div>
</main>
{# FOOTER GLASSMORPHISM #}
<footer class="mt-auto p-6 md:p-10">
<div class="bg-white/40 dark:bg-slate-800/40 backdrop-blur-xl border border-white/20 dark:border-slate-700/50 rounded-[2rem] p-6 shadow-xl">
<div class="flex flex-col md:flex-row items-center justify-between gap-4 text-center md:text-left">
{# Copyright & Branding #}
<div class="space-y-1">
<p class="text-[10px] font-black text-slate-400 dark:text-slate-500 uppercase tracking-[0.2em]">Propulsé par</p>
<p class="text-sm font-bold text-slate-800 dark:text-white">
Développé par <span class="text-blue-600">SARL SITECONSEIL</span>
</p>
</div>
{# Versioning & Links #}
<div class="flex flex-col items-center md:items-end space-y-1">
<div class="flex items-center space-x-4">
<a href="https://www.siteconseil.fr" target="_blank" class="text-xs font-medium text-slate-500 hover:text-blue-600 transition-colors underline decoration-blue-500/30 underline-offset-4">www.siteconseil.fr</a>
<span class="w-1 h-1 bg-slate-300 dark:bg-slate-700 rounded-full"></span>
<a href="mailto:s.com@siteconseil.fr" class="text-xs font-medium text-slate-500 hover:text-blue-600 transition-colors">s.com@siteconseil.fr</a>
</div>
<p class="text-[9px] font-black text-slate-400/60 uppercase tracking-widest">
Crm Engine <span class="text-slate-500 dark:text-slate-300">1.0.0</span>
</p>
</div>
</div>
</div>
</footer>
</main> {# Fin du main existant #}
</div>
</body>