/* global React, Icon, Button, Eyebrow, Badge, Droplets, Container */ function Academy() { return (
FRSKO ACADEMY

¿Prefieres aprender a hacerlo tú mismo?

Programas de capacitación en marketing con IA para equipos internos, directivos y emprendedores. In-company, cohortes abiertas y programas para universidades.

{[ { t: 'In-company', s: 'Tu equipo aprende usando tus propios datos y casos.' }, { t: 'Cohortes abiertas', s: 'Marketers de distintas empresas, mismo nivel, 6 semanas.' }, { t: 'Universidades', s: 'Licencias y currícula para programas académicos.' }, ].map(b => (
{b.t}
{b.s}
))}
); } function Team() { return (
{/* Visual: people + IA cluster */}
{/* Desktop: floating chips con posicionamiento absoluto */}
IA
Genera 50 variantes
Estratega
Elige 3 ganadoras
Resultado
Lanza esta semana
{/* Mobile: chips apilados */}
{[ { icon: 'sparkles', bg: 'var(--sub-neuro-bg)', fg: 'var(--sub-neuro-1)', label: 'IA', text: 'Genera 50 variantes' }, { icon: 'chart', bg: 'var(--teal-50)', fg: 'var(--brand)', label: 'Estratega', text: 'Elige 3 ganadoras' }, { icon: 'target', bg: 'var(--yellow-50)', fg: 'var(--yellow-700)', label: 'Resultado', text: 'Lanza esta semana' }, ].map(c => (
{c.label}
{c.text}
))}
EL EQUIPO DETRÁS DE LA TECNOLOGÍA

La IA hace el trabajo pesado. Las personas toman las decisiones.

No somos un bot ni una plataforma de autoservicio. Somos un equipo de estrategas, creativos y especialistas en datos que usa inteligencia artificial para multiplicar su capacidad — no para reemplazar el criterio humano.

Cada cuenta de FRSKO tiene un estratega asignado que entiende tu industria, conoce a tu competencia y es responsable de tus resultados.

1:1
Estratega asignado
<24h
Tiempo de respuesta
10+
Años en neuro
); } function FinalCta({ onCta }) { const paths = [ { icon: 'sparkles', eyebrow: 'RÁPIDO · 5 MIN', title: 'Quiero un diagnóstico rápido', body: 'Responde 5 preguntas y te decimos qué solución FRSKO tiene más sentido para tu empresa hoy.', cta: 'Hacer el diagnóstico gratis', variant: 'cta', tone: { soft: 'var(--yellow-50)', ink: 'var(--yellow-700)' }, }, { icon: 'calendar', eyebrow: 'DIRECTO · 30 MIN', title: 'Quiero ver una demo', body: 'Agenda 30 minutos con un estratega. Sin pitch, solo conversación.', cta: 'Agendar demo', variant: 'primary', featured: true, tone: { soft: 'rgba(255,255,255,0.12)', ink: '#fff' }, }, { icon: 'mail', eyebrow: 'CÓMODO · ASÍNCRONO', title: 'Quiero que me contacten', body: 'Déjanos tus datos y un estratega te escribe en menos de 24 horas.', cta: 'Que me contacten', variant: 'ghost', tone: { soft: 'var(--teal-50)', ink: 'var(--teal-700)' }, }, ]; return (
¿POR DÓNDE EMPEZAMOS?

Tres caminos para arrancar.
Tú eliges el ritmo.

Sin importar dónde estés hoy, hay una forma de empezar que se ajusta a tu tiempo.

{paths.map((p) => { const featured = p.featured; return (
{featured && ( <> {/* Badge "Más popular" visible en mobile donde no hay lift */}
Más popular
)}
{p.eyebrow}

{p.title}

{p.body}

); })}
); } function SiteFooter() { React.useEffect(() => { if (document.querySelector('link[data-frsko-fontawesome]')) return; const link = document.createElement('link'); link.rel = 'stylesheet'; link.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css'; link.setAttribute('data-frsko-fontawesome', 'true'); document.head.appendChild(link); }, []); const socialLinks = [ { label: 'TikTok', href: 'https://www.tiktok.com/@frskomarketing', icon: 'fa-brands fa-tiktok' }, { label: 'Facebook', href: 'https://www.facebook.com/frskomkt/', icon: 'fa-brands fa-facebook-f' }, { label: 'Instagram', href: 'https://www.instagram.com/frskomkt/', icon: 'fa-brands fa-instagram' }, { label: 'LinkedIn', href: 'https://www.linkedin.com/company/frskomkt/', icon: 'fa-brands fa-linkedin-in' }, ]; const cols = [ { title: 'Soluciones IA', links: [ { label: 'Lead Engine AI', href: '/ia/lead-engine' }, { label: 'NeuroCopy Lab', href: '/ia/neurocopy-lab' }, { label: 'Content Studio AI', href: '/ia/content-studio' }, { label: 'Smart Ads AI', href: '/ia/smart-ads' }, { label: 'SEO Pulse', href: '/ia/seo-pulse' }, { label: 'Soluciones Enterprise', href: '/ia/enterprise' }, ], }, { title: 'Servicios', links: [ { label: 'Consultoría', href: '/servicios/consultoria' }, { label: 'Campañas Digitales', href: '/servicios/campanas-digitales' }, { label: 'Lead Generation', href: '/servicios/lead-generation' }, { label: 'Neuromarketing', href: '/servicios/neuromarketing' }, { label: 'Academy', href: '/academy' }, { label: 'Precios', href: '/precios' }, ], }, { title: 'Empresa', links: [ { label: 'Nosotros', href: '/nosotros' }, { label: 'Clientes & Marcas', href: '/nosotros/clientes' }, { label: 'Casos de Éxito', href: '/casos-de-exito' }, { label: 'Blog', href: '/blog' }, { label: 'Herramientas', href: '/herramientas' }, { label: 'Contacto', href: '/contacto' }, ], }, { title: 'Legal', links: [ { label: 'Aviso de Privacidad', href: '/privacidad' }, { label: 'Términos de Uso', href: '/terminos' }, { label: 'Política de Cookies', href: '/cookies' }, { label: 'hola@frsko.com', href: 'mailto:hola@frsko.com' }, ], }, ]; return ( ); } Object.assign(window, { Academy, Team, FinalCta, SiteFooter });