initial commit

This commit is contained in:
Ryan Malloy 2025-03-16 07:38:30 -06:00
commit 8a67761c9a
83 changed files with 15510 additions and 0 deletions

View file

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