Initial commit

This commit is contained in:
Haitham Khalifa
2026-02-16 12:18:06 +01:00
commit b538d84e17
63 changed files with 15059 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
'use client';
import { Toaster } from 'react-hot-toast';
export default function ToasterProvider() {
return (
<Toaster
position="top-right"
toastOptions={{
style: {
background: '#1a1625',
color: '#fff',
border: '1px solid rgba(139,92,246,0.35)',
},
}}
/>
);
}