Moving Header to layout.tsx

This commit is contained in:
kbe
2025-08-13 15:17:31 +02:00
parent 18ff5b9beb
commit c52777afa2
2 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,8 @@ import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Header } from "@/components/ui/header";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
@@ -27,6 +29,8 @@ export default function RootLayout({
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<Header/>
{children}
</body>
</html>