base version, dark mode

This commit is contained in:
Dominik Natter
2025-03-28 09:19:47 +01:00
parent 959286580d
commit eb5e7572d7
19 changed files with 975 additions and 122 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>
}