Add theme integration and shadcn setup in internal_frontend

This commit is contained in:
2025-07-01 17:37:30 +09:00
parent e06e6f8669
commit 20314c64b2
7 changed files with 254 additions and 40 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
}: Readonly<React.ComponentProps<typeof NextThemesProvider>>) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}