// Industries.jsx — 4 segmentos con mockups SVG const Industries = () => { const ClinicaSVG = () => ( {/* phone in clinic */} {/* tooth icon floating */} ); const RestauranteSVG = () => ( {/* table-top top view */} {/* phone tilted */} RESERVAR Mesa para 4 · 8pm {/* fork knife */} {/* clock */} ); const ServiciosSVG = () => ( {/* laptop */} {/* dashboard inside */} +38% 142 24/7 {/* line chart */} ); const ComerciosSVG = () => ( {/* shopping bag */} {/* phone with product card */} {/* product image */} ₡18,500 AÑADIR · 1 {/* badge */} -20% ); const items = [ { slug: 'https://wa.me/50660495999', svg: Clínicas, title: 'Clínicas', desc: 'Citas que se agendan solas. Recordatorios automáticos. Cero ausencias.' }, { slug: 'https://wa.me/50660495999', svg: Restaurantes, title: 'Restaurantes', desc: 'Reservas, menú digital y delivery por WhatsApp. Fines de semana sin caos.' }, { slug: 'https://wa.me/50660495999', svg: , title: 'Servicios profesionales', desc: 'Cotizaciones rápidas, web que convierte y clientes que llegan calientes.' }, { slug: 'https://wa.me/50660495999', svg: , title: 'Comercios', desc: 'Catálogo en línea + bot que vende. Tu tienda abierta los 365 días.' }, ]; return (
Industrias

Diseñado para tu negocio, no genérico.

Cada landing tiene su propio chatbot, sus dolores específicos y sus precios claros. Elegí el tuyo.

¿Otro rubro? Hacemos custom. Hablemos →
{items.map((it, i) => (
{it.svg}
agenciabytec.com{it.slug}

{it.title}

{it.desc}

Ver demo y precios
))}
); }; window.Industries = Industries;