initial commit

This commit is contained in:
2025-07-08 11:16:51 -07:00
commit a0f2f63e6e
30 changed files with 5501 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
'use client'
import { ChakraProvider, defaultSystem } from '@chakra-ui/react'
import { ColorModeProvider } from './color-mode'
export function Provider(props) {
return (
<ChakraProvider value={defaultSystem}>
<ColorModeProvider {...props} />
</ChakraProvider>
)
}