diff --git a/app/(root)/layout.tsx b/app/(root)/layout.tsx index b701dc6..fc6f0dc 100644 --- a/app/(root)/layout.tsx +++ b/app/(root)/layout.tsx @@ -1,5 +1,8 @@ +"use client"; + import { Header } from "@/components/Header"; import { Footer } from "@/components/Footer"; +import CookieConsent from "@/components/CookieConsent"; export default function MainLayout({ children, @@ -8,6 +11,13 @@ export default function MainLayout({ }>) { return (
+
+ {}} + onDeclineCallback={() => {}} + /> +
+
{children}