cart mechanism complete

This commit is contained in:
2025-02-05 21:17:25 +02:00
parent 5ac895ea3e
commit f594f001f6
24 changed files with 441 additions and 78 deletions

View File

@@ -1,9 +1,10 @@
import type {Metadata} from 'next'
import {headers} from 'next/headers'
import {ReactNode} from 'react'
import {Toaster} from 'react-hot-toast'
import './globals.css'
import {Toaster} from '@/components/ui/toaster'
//import {Toaster} from '@/components/ui/toaster'
import {routing} from '@/i18n/routing'
import {APP_DESCRIPTION, APP_NAME, APP_SLOGAN} from '@/lib/constants'
@@ -25,7 +26,8 @@ export default async function RootLayout({
<html lang={locale} suppressHydrationWarning>
<body className='min-h-screen antialiased'>
{children}
<Toaster />
{/*<Toaster />*/}
<Toaster position='top-right' reverseOrder={false} />
</body>
</html>
)