Initial commit

This commit is contained in:
decolua 2026-01-05 09:58:59 +07:00
commit 3857598de4
159 changed files with 14537 additions and 0 deletions

View file

@ -0,0 +1,15 @@
"use client";
import { useEffect } from "react";
import useThemeStore from "@/store/themeStore";
export function ThemeProvider({ children }) {
const { initTheme } = useThemeStore();
useEffect(() => {
initTheme();
}, [initTheme]);
return <>{children}</>;
}