Add scaffold commision page

This commit is contained in:
2025-07-05 21:19:49 +02:00
parent ab40b6983a
commit af756e2154
39 changed files with 3155 additions and 120 deletions

View File

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