Updated dashbpard and added sonner

This commit is contained in:
2025-06-26 14:09:10 +02:00
parent da0524a4fc
commit 4381d81710
14 changed files with 628 additions and 12 deletions

View File

@@ -1,5 +1,6 @@
import { ReactNode } from "react"
import "./globals.css"
import { Toaster } from "@/components/ui/sonner"
export default function RootLayout({
children
@@ -10,6 +11,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<body className="antialiased">
{children}
<Toaster />
</body>
</html>
)