header in progress

This commit is contained in:
2026-04-15 07:51:37 +02:00
parent 308099ca2a
commit c07931229d
2 changed files with 23 additions and 6 deletions
+16
View File
@@ -0,0 +1,16 @@
export default function Header() {
return (
<header className="bg-brand-brown text-brand-beige w-full py-6 px-10 flex justify-between items-center">
<div className="font-serif text-2xl font-bold">M. Guilbert</div>
<nav>
<ul className="flex gap-8 font-sans uppercase text-sm tracking-widest">
<li>Accueil</li>
<li>Projets</li>
<li>À propos</li>
<li>Blog</li>
</ul>
</nav>
<div>🇫🇷</div>
</header>
);
}