diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..5fa9053 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,37 @@ +import type { Metadata } from "next"; +import '@fontsource-variable/kode-mono'; +import "./globals.css"; +import {ThemeProvider} from "@/components/providers/theme-provider"; +import type React from "react"; +import {Footer} from "@/components/footer"; +import {Header} from "@/components/header"; + +export const metadata: Metadata = { + title: "YeloBit", + description: "Generated by create next app", + icons: "yellow-bit.svg"}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + + + + +
+ {children} +