diff --git a/app/components/ui/footerCookieConsent.tsx b/app/components/ui/footerCookieConsent.tsx index 2791135f..ab7f352f 100644 --- a/app/components/ui/footerCookieConsent.tsx +++ b/app/components/ui/footerCookieConsent.tsx @@ -1,5 +1,7 @@ +// app/components/ui/FooterCookieConsent.tsx import React from "react"; -import Button from "./cookieButtons"; +import { Button } from "./button"; // Adjust the path if necessary + const FooterCookieConsent: React.FC = () => { const handleAccept = () => { console.log("Cookie consent accepted"); @@ -17,9 +19,7 @@ const FooterCookieConsent: React.FC = () => {
- - We Value your Privacy - + We Value your Privacy Our website uses cookies to enhance your browsing experience, provide personalized content, and analyze site traffic. By clicking @@ -27,13 +27,13 @@ const FooterCookieConsent: React.FC = () => {