feat: initial

This commit is contained in:
2026-06-03 03:08:57 +03:30
parent 3d9585ac5c
commit 6fa30eb29a
45 changed files with 7053 additions and 86 deletions
+12
View File
@@ -0,0 +1,12 @@
"use client";
import { AuthProvider } from "@/lib/auth";
import { ToastProvider } from "./toast";
export function Providers({ children }: { children: React.ReactNode }) {
return (
<ToastProvider>
<AuthProvider>{children}</AuthProvider>
</ToastProvider>
);
}