diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..9be16a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import { ThemeProvider } from "@/components/theme-provider"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -23,12 +24,19 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + - {children} + + {children} + ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 247f613..95a31c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -import { MadeWithDyad } from "@/components/made-with-dyad"; +import { Footer } from "@/components/footer"; import { MetaForm } from "@/components/meta-form"; export default function Home() { @@ -15,7 +15,7 @@ export default function Home() { - +