Initial commit from v0

This commit is contained in:
v0
2026-03-20 00:11:55 +00:00
commit a0a04d3f87
87 changed files with 8419 additions and 0 deletions
+11
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>
}