diff --git a/app/layout.tsx b/app/layout.tsx index f7fa87e..cc2eb30 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -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({
+