From 3b1a3e93e05c2f7caa14f3ff6db7ace0bb28edf9 Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 17 Jun 2024 09:46:21 +0200 Subject: [PATCH] feat(layout): add Toaster component and update favicon link This commit introduces the Toaster component to the main layout. In addition, the link to the favicon has been updated to correct its location. --- src/app/layout.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ab4a493..7570728 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { PrimaryNavigationMenu } from "@/components/primary-nav"; import { Providers } from "@/components/providers/providers"; import { ThemeProvider } from "@/components/providers/theme-provider"; import type React from "react"; +import {Toaster} from "@/components/ui/toaster"; export const metadata: Metadata = { title: "YeloBit", @@ -22,7 +23,7 @@ export default function RootLayout({ return ( - + @@ -32,6 +33,7 @@ export default function RootLayout({ {children}