diff --git a/.idea/workspace.xml b/.idea/workspace.xml index c341728..73d1d5f 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,18 +5,20 @@ - - - - - + + + + + + + - - - - + + - + + + - @@ -119,7 +121,7 @@ - + diff --git a/src/app/cookie/page.tsx b/src/app/cookie/page.tsx new file mode 100644 index 0000000..7c1b7a4 --- /dev/null +++ b/src/app/cookie/page.tsx @@ -0,0 +1,5 @@ +import { Cookie } from '@/views'; + +export default function Page() { + return ; +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 421ab2f..0dd706a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,7 +3,13 @@ import { ReactNode } from 'react'; import { Montserrat, Roboto } from 'next/font/google'; import '@core/styles/globals.scss'; import '@core/styles/reset.scss'; -import { Footer, Header, MobileCallback, ScrollToTop } from '@/widgets'; +import { + CookieNotice, + Footer, + Header, + MobileCallback, + ScrollToTop, +} from '@/widgets'; import { ModalProvider } from '@core/providers/modal-provider'; const roboto = Roboto({ @@ -35,8 +41,9 @@ export default function RootLayout({
{children}