diff --git a/front/next-env.d.ts b/front/next-env.d.ts
index c4b7818..9edff1c 100644
--- a/front/next-env.d.ts
+++ b/front/next-env.d.ts
@@ -1,6 +1,6 @@
///
///
-import "./.next/dev/types/routes.d.ts";
+import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/front/src/app/layout.tsx b/front/src/app/layout.tsx
index 7d7e8bf..9c0acbb 100644
--- a/front/src/app/layout.tsx
+++ b/front/src/app/layout.tsx
@@ -1,6 +1,7 @@
import React from "react";
import "./globals.css";
import { FooterComponent, HeaderComponent } from "../layouts";
+import { CookiesConsentProvider, CookiesBanner } from "../common/cookies";
interface Props {
children: React.ReactNode;
@@ -14,9 +15,12 @@ const RootLayout = (props: Props) => {
className="bg-base-200 text-base-content flex min-h-screen flex-col"
suppressHydrationWarning
>
-
- {children}
-
+
+
+ {children}
+
+
+