init project + layout

This commit is contained in:
Ishaan Dey
2024-04-06 19:03:04 -04:00
parent 775c425971
commit f32d84d2c2
13 changed files with 1363 additions and 290 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>
}