Ajout des Models

This commit is contained in:
2026-03-23 22:20:14 +01:00
parent 97ed7a5fa8
commit fb1f8b26a2
21 changed files with 500 additions and 92 deletions
+13
View File
@@ -0,0 +1,13 @@
<footer class="gradient-niagara text-white py-12 mt-16">
<div class="container mx-auto px-4 flex flex-col md:flex-row justify-between items-start md:items-center gap-8">
<div>
<p class="font-bold text-lg mb-2">Projet (RE)Sources Relationnelles</p>
<p class="text-sm text-blue-100">Un outil au service de la cohésion sociale.</p>
</div>
<ul class="flex flex-wrap gap-6 text-sm">
<li><a href="#" class="text-blue-100 hover:text-candlelight hover:underline transition-smooth duration-200">Mentions Légales</a></li>
<li><a href="#" class="text-blue-100 hover:text-candlelight hover:underline transition-smooth duration-200">Politique de Confidentialité</a></li>
<li><a href="#" class="text-blue-100 hover:text-candlelight hover:underline transition-smooth duration-200">Contactez-nous</a></li>
</ul>
</div>
</footer>
+34
View File
@@ -0,0 +1,34 @@
<header class="border-b border-gray-200 bg-white shadow-sm transition-smooth">
<div class="container mx-auto px-4 py-6 flex flex-wrap items-center justify-between gap-4">
<div class="flex items-center space-x-4">
<div class="flex items-center">
<div class="border-r border-gray-300 pr-4">
<p class="text-xs font-bold uppercase leading-tight text-gray-700">Gouvernement</p>
<p class="text-[10px] uppercase italic text-gray-600 mt-1">Liberté<br>Égalité<br>Fraternité</p>
</div>
</div>
<h1 class="text-xs font-bold uppercase max-w-[150px] text-gray-800 leading-snug">
<img
src="{{ asset('img/logo-ministere.png') }}"
alt="Logo du Ministère des Solidarités et de la Santé"
class="h-16 w-auto mr-4"
>
</h1>
</div>
<div class="hidden md:block flex-grow text-center">
<span class="text-3xl font-black italic tracking-tighter text-gray-900">
(RE)SOURCES <span class="text-niagara underline decoration-candlelight decoration-4 underline-offset-2">RELATIONNELLES</span>
</span>
</div>
<nav class="flex items-center gap-2 whitespace-nowrap">
<a href="/login" class="px-5 py-2.5 text-sm font-bold text-niagara border-2 border-niagara rounded-lg hover:bg-niagara hover:text-white transition-smooth duration-200">
Connexion
</a>
<a href="/register" class="px-5 py-2.5 text-sm font-bold bg-candlelight text-gray-900 rounded-lg shadow-md hover:shadow-lg hover:-translate-y-0.5 transition-smooth duration-200">
S'inscrire
</a>
</nav>
</div>
</header>