// ============================================================ // FLOATING ASSISTANTS — WhatsApp bot + Asistente virtual // Two character-based chat buttons in the corner // ============================================================ function FloatingAssistants() { const [open, setOpen] = React.useState(false); const voxi = CHARACTERS.find(c => c.id === "voxi"); const gatito = CHARACTERS.find(c => c.id === "gatito-te-amo"); const whatsappLink = "https://wa.me/525532009853?text=" + encodeURIComponent( "Hola Cristina, vengo del sitio Gatito Te Amo. Quiero información." ); const assistantLink = "https://wa.me/525532009853?text=" + encodeURIComponent( "Hola, quiero hablar con el asistente virtual de Gatito Te Amo." ); return (
); } window.FloatingAssistants = FloatingAssistants;