Spaces:
Running
Running
File size: 507 Bytes
81b1089 344e369 81b1089 344e369 81b1089 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | "use client"
import { AuthProvider } from "@/lib/auth-context"
import { Toaster } from "@/components/ui/sonner"
export function Providers({ children }: { children: React.ReactNode }) {
return (
<AuthProvider>
{children}
<Toaster
position="top-center"
richColors
closeButton
duration={4000}
toastOptions={{
style: { fontFamily: "var(--font-ibm-plex-arabic), var(--font-cairo), sans-serif" },
}}
/>
</AuthProvider>
)
}
|