initial commit

This commit is contained in:
2026-04-17 17:06:55 +07:00
parent fab77ed970
commit 6404495696
28 changed files with 9704 additions and 224 deletions
@@ -0,0 +1,11 @@
"use client";
import * as React from "react";
import {
ThemeProvider as NextThemesProvider,
ThemeProviderProps,
} from "next-themes";
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}