> ## Documentation Index
> Fetch the complete documentation index at: https://docs.minimus.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Cookie Declaration

> See the cookies used on this site and manage your personal consent preferences.

export function CookieDeclaration() {
  useEffect(() => {
    const container = document.getElementById('cookie-declaration-container');
    if (!container || document.getElementById('CookieDeclaration')) return;
    const script = document.createElement('script');
    script.id = 'CookieDeclaration';
    script.src = 'https://consent.cookiebot.com/40e95942-a9eb-491e-8406-2f08417ec73b/cd.js';
    script.type = 'text/javascript';
    script.async = true;
    container.appendChild(script);
    return () => {
      container.innerHTML = '';
    };
  }, []);
  return <div id="cookie-declaration-container" />;
}

<CookieDeclaration />
