add dark theme support

This commit is contained in:
2025-08-16 10:33:37 -04:00
parent 69e61573cb
commit cecf3a8d5b
6 changed files with 360 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
export function ThemeProvider({
children,
...props
}: React.ComponentProps<typeof NextThemesProvider>) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}