First commit

This commit is contained in:
charles-gauthereau
2024-11-03 15:29:30 +01:00
parent ba9dddf0aa
commit d6ff290f66
68 changed files with 696 additions and 228 deletions
+9
View File
@@ -0,0 +1,9 @@
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
import { type ThemeProviderProps } from "next-themes/dist/types"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}