超级管理员后台

This commit is contained in:
柳清爽
2025-04-09 09:45:06 +08:00
parent 282a301eeb
commit 3a01dc897a
86 changed files with 7535 additions and 4 deletions

View File

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