"use client"; import { motion } from "framer-motion"; import { WHATSAPP_NUMBER, WHATSAPP_MESSAGE } from "@/lib/constants"; export function WhatsAppButton() { const url = `https://wa.me/${WHATSAPP_NUMBER.replace("+", "")}?text=${encodeURIComponent(WHATSAPP_MESSAGE)}`; return ( ); }