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