/** * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Project: Hilmacorp.ai — Web Platform * File: components/ManageCookiesButton.tsx * Description: Button that reopens the cookie consent banner (dispatches the preferences event) */ "use client"; import { COOKIE_PREFERENCES_EVENT } from "@/components/CookieConsent"; export default function ManageCookiesButton({ label, className = "", }: { label: string; className?: string; }) { return ( ); }