From c07931229d1d6667c9074d11d341acc496429aef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A9o=20GUILBERT?= Date: Wed, 15 Apr 2026 07:51:37 +0200 Subject: [PATCH] header in progress --- app/[locale]/layout.tsx | 13 +++++++------ components/layout/Header.tsx | 16 ++++++++++++++++ 2 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 components/layout/Header.tsx diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 49fba1d..373e7ed 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Playfair_Display, Inter } from "next/font/google"; import "./globals.css"; +import Header from "@/components/layout/Header"; const playfairDisplay = Playfair_Display({ variable: "--font-playfair", @@ -23,11 +24,11 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - - {children} + + +
+ {children} + ); -} +} \ No newline at end of file diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx new file mode 100644 index 0000000..bfb19c3 --- /dev/null +++ b/components/layout/Header.tsx @@ -0,0 +1,16 @@ +export default function Header() { + return ( +
+
M. Guilbert
+ +
🇫🇷
+
+ ); +} \ No newline at end of file