internal frontend implementation with keycloak authentication

This commit is contained in:
2025-07-02 02:24:35 +00:00
parent 7c3ee5357e
commit 66a415b0dd
39 changed files with 3475 additions and 59 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>
}