'use client'; import { Button } from '@/components/ui/Button'; import { useCookieConsent } from './CookieContext'; export function CookieBanner() { const { showBanner, acceptAll, openModal } = useCookieConsent(); if (!showBanner) return null; return (

Ova web stranica koristi kolačiće za poboljšanje korisničkog iskustva.

); }