This commit is contained in:
Alois 2026-04-02 22:39:50 +02:00
commit a18640344e
77 changed files with 8201 additions and 2 deletions

View file

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