From 4e61b0de9a98696b4d8cd81795ff522f2647b304 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Wed, 21 Jan 2026 15:42:52 +0100 Subject: [PATCH] feat(dashboard): add toaster notifications and update header styling - Integrated `Toaster` component for notifications in the dashboard layout. - Updated header typography with better font size and tracking improvements. --- frontend/src/app/(dashboard)/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/(dashboard)/layout.tsx b/frontend/src/app/(dashboard)/layout.tsx index f76de5d..848fae1 100644 --- a/frontend/src/app/(dashboard)/layout.tsx +++ b/frontend/src/app/(dashboard)/layout.tsx @@ -8,6 +8,7 @@ import { SidebarProvider, SidebarTrigger, } from "@/components/ui/sidebar"; +import { Toaster } from "@/components/ui/sonner"; import { UserNavMobile } from "@/components/user-nav-mobile"; export default function DashboardLayout({ @@ -26,7 +27,9 @@ export default function DashboardLayout({
- MemeGoat + + MemeGoat +
@@ -46,6 +49,7 @@ export default function DashboardLayout({ + ); }