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