/** Construit un lien wa.me à partir d'un numéro affiché (ex: "+229 97 00 00 01"). */
export function urlWhatsapp(numero: string): string {
  return `https://wa.me/${numero.replace(/\D/g, "")}`;
}
