Initial commit

This commit is contained in:
theshy
2025-07-31 17:05:07 +08:00
parent 8fab3b19cc
commit 24f21144ab
91 changed files with 16311 additions and 159 deletions

12
app/providers.tsx Normal file
View File

@ -0,0 +1,12 @@
"use client";
import { SessionProvider } from "next-auth/react";
import { ThemeProvider } from "@/lib/contexts/theme-context";
export default function Providers({ children }: { children: React.ReactNode }) {
return (
<SessionProvider>
<ThemeProvider>{children}</ThemeProvider>
</SessionProvider>
);
}