// Hero function AnimatedCounter({ to, suffix = '', duration = 1.6 }) { const [val, setVal] = useState(0); const ref = useRef(null); const seen = useRef(false); useEffect(() => { const io = new IntersectionObserver(entries => { entries.forEach(e => { if (e.isIntersecting && !seen.current) { seen.current = true; const start = performance.now(); const step = (now) => { const p = Math.min(1, (now - start) / (duration * 1000)); const eased = 1 - Math.pow(1 - p, 3); setVal(Math.round(to * eased)); if (p < 1) requestAnimationFrame(step); }; requestAnimationFrame(step); } }); }, { threshold: 0.4 }); if (ref.current) io.observe(ref.current); return () => io.disconnect(); }, [to, duration]); return {val}{suffix}; } function Hero() { return ( Quetzaltenango · Guatemala Arte en tu piel. Black & Grey · Blackwork · Fineline Tatuador y piercer profesional desde 2018. Especialista en Black & Grey, Blackwork y Fineline. Hype Tattoo Collective — Quetzaltenango, Guatemala. Ver portafolio Agendar cita {/* Right — featured image */} BLACK & GREY · 2026 {/* Metrics */} {[ { n: 6, s: '+', l: 'Años de experiencia' }, { n: 500, s: '+', l: 'Tatuajes realizados' }, { n: 3, s: '', l: 'Estilos dominados' }, { n: null, s: '', l: 'Invictus Body Jewelry', special: true }, ].map((m, i) => ( {m.special ? 'Invictus' : <>{m.s}>} {m.l} ))} ); } window.Hero = Hero;
Black & Grey · Blackwork · Fineline
Tatuador y piercer profesional desde 2018. Especialista en Black & Grey, Blackwork y Fineline. Hype Tattoo Collective — Quetzaltenango, Guatemala.