refactor(app): move Toaster component position in layout

The Toaster component was relocated in the layout file. It's been moved from below the Providers component to a position above the Footer component. This repositioning is aimed at improving the visual hierarchy and flow of the application.
This commit is contained in:
2024-06-17 10:01:32 +02:00
parent 7426f5f642
commit 39fc556aca

View File

@@ -31,9 +31,9 @@ export default function RootLayout({
<PrimaryNavigationMenu />
</Header>
{children}
<Toaster />
<Footer />
</Providers>
<Toaster/>
</body>
</html>
);