import { motion } from 'framer-motion';
import { ArrowRight, Mail, Phone } from 'lucide-react';
import { useTranslation } from 'react-i18next';
export function CTA() {
const { t } = useTranslation();
const email = t('cta.email');
const whatsapp = t('cta.whatsapp');
return (
);
}
function ContactCard({
Icon,
label,
value,
href,
}: {
Icon: typeof Mail;
label: string;
value: string;
href: string;
}) {
return (
);
}