Add CookieConsentBanner component and integrate cookie consent functionality
This commit is contained in:
@@ -3,6 +3,7 @@ import {Inter} from "next/font/google";
|
||||
import Navbar from "@/components/Navbar";
|
||||
import Footer from "@/components/Footer";
|
||||
import React from "react";
|
||||
import CookieConsentBanner from "@/components/CookieConsentBanner";
|
||||
|
||||
const inter = Inter({subsets: ["latin"]});
|
||||
|
||||
@@ -18,6 +19,7 @@ export default function RootLayout(
|
||||
<body className={inter.className}>
|
||||
<Navbar/>
|
||||
{children}
|
||||
<CookieConsentBanner/>
|
||||
<Footer/>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user