function CTA() { const [lang] = useLang(); const C = window.FUSE_CONTENT.cta; const [form, setForm] = React.useState({ name: '', email: '', msg: '' }); const [sent, setSent] = React.useState(false); const set = (k) => (e) => setForm(f => ({ ...f, [k]: e.target.value })); const onSubmit = (e) => { e.preventDefault(); if (!form.email) return; setSent(true); }; return (
{C.kicker[lang]}

{C.h2[lang][0]} {C.h2[lang][1]}

{C.body[lang]}

    {(lang === 'es' ? [ ['Sin pitch', '30 minutos, agenda directa.'], ['Honestidad', 'Si no es para nosotros, te decimos quién sí.'], ['Respuesta', 'Menos de 24 horas hábiles.'], ] : [ ['No pitch', '30 minutes, direct agenda.'], ['Honesty', 'If we\'re not the fit, we tell you who is.'], ['Reply', 'Under 24 business hours.'], ]).map(([k, v]) => (
  • ↳ {k} {v}
  • ))}