feat: add cookie notice

This commit is contained in:
2025-06-18 15:07:43 +03:00
parent 48739d4e64
commit ec696e7d3e
6 changed files with 151 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import '@core/styles/reset.scss';
import '@core/styles/globals.scss';
import { Toaster } from 'react-hot-toast';
import { ModalProvider } from '@core/providers/modal-provider';
import { CookieNotice } from '@/widgets';
const openSans = Open_Sans({
subsets: ['cyrillic'],
@@ -37,6 +38,7 @@ export default function RootLayout({
<body className={`${openSans.variable}`}>
<ModalProvider>{children}</ModalProvider>
<Toaster />
<CookieNotice />
</body>
</html>
);