Added Themes

This commit is contained in:
ansh
2024-10-12 17:07:18 -05:00
parent fbba6a6017
commit 59f5c23b48
9 changed files with 1307 additions and 897 deletions
+7
View File
@@ -0,0 +1,7 @@
"use client";
import { ThemeProvider } from "next-themes";
export function Themes({ children }: { children: React.ReactNode }) {
return <ThemeProvider attribute="class">{children}</ThemeProvider>;
}