first commit

This commit is contained in:
2025-12-02 14:42:40 +05:30
commit e87bdd45a1
66 changed files with 9380 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
"use client";
import { Toaster } from "sonner";
export function ToasterProvider() {
return (
<Toaster richColors position="top-right" closeButton duration={3000} />
);
}