Files
klz-cables.com/components/CookieConsent.tsx
2025-12-28 23:28:31 +01:00

68 lines
2.1 KiB
TypeScript

'use client';
import { useState, useEffect } from 'react';
import { t, getLocaleFromPath } from '@/lib/i18n';
import { usePathname } from 'next/navigation';
export function CookieConsent() {
const [showBanner, setShowBanner] = useState(false);
const [isMounted, setIsMounted] = useState(false);
const pathname = usePathname();
const locale = getLocaleFromPath(pathname);
useEffect(() => {
setIsMounted(true);
const consent = localStorage.getItem('cookie-consent');
if (!consent) {
setShowBanner(true);
}
}, []);
const handleAccept = () => {
localStorage.setItem('cookie-consent', 'accepted');
setShowBanner(false);
};
const handleDecline = () => {
localStorage.setItem('cookie-consent', 'declined');
setShowBanner(false);
};
if (!isMounted || !showBanner) {
return null;
}
return (
<div className="fixed bottom-0 left-0 right-0 z-50 bg-white border-t border-gray-200 shadow-lg">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
<div className="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
<div className="flex-1">
<p className="text-sm text-gray-700">
{t('cookieConsent.message', locale)}
<a
href="/privacy-policy"
className="text-blue-600 hover:text-blue-700 underline ml-1"
>
{t('cookieConsent.privacyPolicy', locale)}
</a>
</p>
</div>
<div className="flex gap-3">
<button
onClick={handleDecline}
className="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 hover:bg-gray-200 rounded-md transition-colors"
>
{t('cookieConsent.decline', locale)}
</button>
<button
onClick={handleAccept}
className="px-4 py-2 text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 rounded-md transition-colors"
>
{t('cookieConsent.accept', locale)}
</button>
</div>
</div>
</div>
</div>
);
}