// Auteur : Simon-Pierre Boucher — contact@spboucher.ai "use client"; import { useState } from "react"; export default function CopyKaId({ kaId }: { kaId: string }) { const [copied, setCopied] = useState(false); return ( ); }