34 lines
1.8 KiB
PHP
34 lines
1.8 KiB
PHP
<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> |