Initial commit

This commit is contained in:
Om Lanke
2025-06-17 19:11:54 +05:30
commit c29f1c26aa
45 changed files with 5524 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
export function Providers({ children }: { children: React.ReactNode }) {
return (
<NextThemesProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
enableColorScheme
>
{children}
</NextThemesProvider>
)
}