Add CookieConsentBanner component and integrate into layout.tsx for cookie consent management

This commit is contained in:
2025-06-26 10:30:49 +09:00
parent ab3a7c5bf9
commit cdac942fca
2 changed files with 130 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import "./globals.css";
import Navbar from "@/components/Navbar";
import React from "react";
import Footer from "@/components/Footer";
import CookieConsentBanner from "@/components/CookieConsentBanner";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -59,6 +60,7 @@ export default function RootLayout({
<Navbar/>
{children}
<Footer/>
<CookieConsentBanner/>
</body>
</html>
);