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