Add CookieConsentBanner component and integrate cookie consent functionality

This commit is contained in:
2025-06-25 09:37:07 +09:00
parent 2403dd72e9
commit f55ca657e8
3 changed files with 144 additions and 8 deletions

View File

@@ -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>