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() {
-
+
);
}
\ No newline at end of file
diff --git a/src/components/footer.tsx b/src/components/footer.tsx
new file mode 100644
index 0000000..5de3418
--- /dev/null
+++ b/src/components/footer.tsx
@@ -0,0 +1,14 @@
+import { ThemeToggle } from "@/components/theme-toggle";
+
+export const Footer = () => {
+ return (
+
+ );
+};
\ No newline at end of file
diff --git a/src/components/made-with-dyad.tsx b/src/components/made-with-dyad.tsx
deleted file mode 100644
index c0c2ef8..0000000
--- a/src/components/made-with-dyad.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-export const MadeWithDyad = () => {
- return (
-
- );
-};
diff --git a/src/components/meta-form.tsx b/src/components/meta-form.tsx
index 9aaabef..586bba7 100644
--- a/src/components/meta-form.tsx
+++ b/src/components/meta-form.tsx
@@ -50,7 +50,7 @@ export function MetaForm() {
className="pl-10 h-12 text-base rounded-lg shadow-sm"
/>
-