// ZARK Rubí — Nav + Hero (with hero variants) [CA] function Logo({ height = 30, stacked = false, hideWord = false }) { if (hideWord) { return (
ZARK Gym 24h
); } return (
ZARK
ZARK {stacked && Gym 24h }
); } function Nav() { const [scrolled, setScrolled] = React.useState(false); const [open, setOpen] = React.useState(false); React.useEffect(() => { const el = document.querySelector('.site-scroll'); const onScroll = () => setScrolled((el ? el.scrollTop : window.scrollY) > 20); const target = el || window; target.addEventListener('scroll', onScroll); return () => target.removeEventListener('scroll', onScroll); }, []); const links = [['Instal·lacions', '#zonas'], ['Maquinària', '#maquinaria'], ['Plans', '#planes'], ['App', '#app']]; return (
{[['ES','/'],['EN','/en/'],['CA','/ca/']].map(([code, href]) => ( {code} ))}
Vine a conèixer-nos
{open &&
{links.map(([l, href]) => setOpen(false)} style={{ color: '#fff', textDecoration: 'none', fontSize: 17, fontWeight: 600, padding: '12px 0', borderBottom: '1px solid var(--ink-700)' }}>{l} )} setOpen(false)} className="btn btn-primary" style={{ marginTop: 14 }}>Vine a conèixer-nos
}
); } function HeroContent({ light }) { return ( El teu nou gimnàs 24 hores a Rubí

Entrena de debò.
Amb la teva gent.

900 m² d'equipament professional, zona HYROX i una comunitat que t'empeny. Sense lletra petita. Sense sorpreses.

Vine a conèixer-nos Veure plans
); } function Hero({ variant }) { if (variant === 'mural') { return (
); } if (variant === 'split') { return (
24/7
Obert 365 dies
a Rubí · Barcelona
); } return (
Strength & Community · Rubí
); } Object.assign(window, { Logo, Nav, Hero });