diff --git a/app/components/ui/footerCookieConsent.tsx b/app/components/ui/footerCookieConsent.tsx new file mode 100644 index 00000000..d2d8c98b --- /dev/null +++ b/app/components/ui/footerCookieConsent.tsx @@ -0,0 +1,43 @@ +import { Button } from "./button"; + +const FooterCookieConsent: React.FC = () => { + const handleAccept = () => { + console.log("Cookie consent accepted"); + }; + + const handleReject = () => { + console.log("Cookie consent rejected"); + }; + + const handleSettings = () => { + console.log("Cookie settings opened"); + }; + + return ( +
+
+

+ We Value your Privacy + + Our website uses cookies to enhance your browsing experience, + provide personalized content, and analyze site traffic. By clicking + "Accept All", you consent to our use of cookies. + +

+
+ + + +
+
+
+ ); +}; + +export default FooterCookieConsent;