'use client' import { useLanguage } from '@/lib/i18n' import { acceptEssentialsOnly, acceptAllOptional } from '@/lib/consent/cookie-consent' interface CookieConsentBannerProps { onManage: () => void } export function CookieConsentBanner({ onManage }: CookieConsentBannerProps) { const { t } = useLanguage() return (

{t('consent.banner.description')}

) }