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:
Mathis H (Avnyr) 2024-06-17 10:01:32 +02:00
parent 7426f5f642
commit 39fc556aca
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

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