"use client"; import { useState } from "react"; import { siX, siWhatsapp } from "simple-icons"; type ShareBarProps = { text: string; // texte du tweet/post }; export function ShareBar({ text }: ShareBarProps) { const [copied, setCopied] = useState(false); const url = "https://wikirush.xyz"; const encoded = encodeURIComponent(text + "\n" + url); const links = [ { label: "X", href: `https://x.com/intent/tweet?text=${encoded}`, si: siX, }, { label: "LinkedIn", href: `https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent(url)}&title=${encodeURIComponent("WikiRush")}&summary=${encodeURIComponent(text)}`, si: { hex: "0A66C2", path: "M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" }, }, { label: "WhatsApp", href: `https://wa.me/?text=${encoded}`, si: siWhatsapp, }, ]; function copyToClipboard() { navigator.clipboard.writeText(text + "\n" + url).then(() => { setCopied(true); setTimeout(() => setCopied(false), 2000); }); } return (