|
@@ -2,6 +2,7 @@ import type { Metadata } from "next";
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
import "./globals.css";
|
|
import "./globals.css";
|
|
|
import { Providers } from "./providers";
|
|
import { Providers } from "./providers";
|
|
|
|
|
+import { Header } from "./components/header";
|
|
|
|
|
|
|
|
const geistSans = Geist({
|
|
const geistSans = Geist({
|
|
|
variable: "--font-geist-sans",
|
|
variable: "--font-geist-sans",
|
|
@@ -27,7 +28,10 @@ export default function RootLayout({
|
|
|
<html lang="en">
|
|
<html lang="en">
|
|
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
|
|
<Providers>
|
|
<Providers>
|
|
|
- {children}
|
|
|
|
|
|
|
+ <Header />
|
|
|
|
|
+ <main>
|
|
|
|
|
+ {children}
|
|
|
|
|
+ </main>
|
|
|
</Providers>
|
|
</Providers>
|
|
|
</body>
|
|
</body>
|
|
|
</html>
|
|
</html>
|