/* global React, Light, Btn, Eyebrow, Sticker */ const { useState, useEffect } = React; const ROTATING_WORDS = [ { word: 'Ethical Hacking', color: '#EC4D2A' }, { word: 'Offensive Security', color: '#EC008C' }, { word: 'Defensive Team', color: '#3551E7' }, { word: 'DevSecOps', color: '#A335E7' }, { word: 'Prevención de Riesgos', color: '#FB881D' }, { word: 'GRC', color: '#35E7C7' }]; const Hero = ({ heroVariant = 'rotating-words', showStickers = true, ctaCopy = 'Agendar diagnóstico de ciberseguridad' } = {}) => { const [idx, setIdx] = useState(0); useEffect(() => { if (heroVariant !== 'rotating-words') return; const t = setInterval(() => setIdx((i) => (i + 1) % ROTATING_WORDS.length), 2400); return () => clearInterval(t); }, [heroVariant]); const current = ROTATING_WORDS[idx]; const isRotating = heroVariant === 'rotating-words'; return (
{/* Lights */} {/* Concentric ring decoration */}
Ciberseguridad · Ethical Hacking · DevSecOps · GRC

{isRotating ? <>Brotek. Ciberseguridad y{' '} {current.word}
para empresas en Argentina. : <>Brotek · Ethical Hacking, DevSecOps y Prevención de Riesgos en Argentina. }

Somos una empresa argentina especializada en Offensive Security, Defensive Team, DevSecOps, Threat Inteligence y GRC. Acompañamos a fintechs, bancos y SaaS en la prevención de riesgos y certificaciones ISO 27001, ISO 42001, SOC 1 y 2.

{ctaCopy} {const t = document.querySelector('#solucion');if (t) window.scrollTo({ top: t.offsetTop - 70, behavior: 'smooth' });}}>Ver soluciones
{/* Trust line */}
Certificamos para
{['ISO 27001', 'SOC 2', 'PCI DSS', 'NIST CSF'].map((c) => {c} )}
{/* Right composition */}
{showStickers ? <>
:
}
); }; window.Hero = Hero;