diff --git a/app/layout.tsx b/app/layout.tsx index 6ac5d08..8ed844e 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next"; +import { ThemeProvider } from "next-themes"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; @@ -23,8 +24,12 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - - {children} + + + + {children} + + ); }