import Link from "next/link"; import { MessageCircle } from "lucide-react"; export function WhatsAppFloat({ phoneRaw, message, }: { phoneRaw: string; message?: string | null; }) { const cleaned = phoneRaw.replace(/[^\d]/g, ""); const href = `https://wa.me/${cleaned}${ message ? `?text=${encodeURIComponent(message)}` : "" }`; return ( ); }