// ============================================================
// BOTS — 3 paquetes con desc + features (matches data.jsx)
// ============================================================
function BotCard({ b }) {
const host = CHARACTERS.find(c => c.id === b.host);
const voxi = CHARACTERS.find(c => c.id === "voxi");
const chatHost = CHARACTERS.find(c => c.id === "gatito-te-amo");
const callLink = "tel:+525532009853";
const chatLink = "https://wa.me/525532009853?text=" + encodeURIComponent(
"Hola Cristina, quiero cotizar: " + b.title + "."
);
return (
{b.desc}
Incluye
{b.features.map(f => - {f}
)}
);
}
function Bots() {
return (
Bots que venden, agendan y hablan.
{BOTS.map(b => )}
);
}
window.Bots = Bots;