Initial commit

This commit is contained in:
Developer
2026-02-06 21:44:04 -06:00
commit f85e93c7a6
151 changed files with 22916 additions and 0 deletions

16
components/Providers.tsx Normal file
View File

@@ -0,0 +1,16 @@
'use client'
import { ThemeProvider } from 'next-themes'
import { ReactNode } from 'react'
export default function Providers({
children,
}: {
children: ReactNode
}) {
return (
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
{children}
</ThemeProvider>
)
}