/* Team โ€” staggered portrait wall with roster rail, hover reveal and drop-in photo slots. */ const TEAM = [ { n: 'Irudaya Raj', role: 'CEO ยท Digital strategy', bio: 'Sets the strategy on every engagement and stays your single point of contact from the first call through handover.', id: 'team-1', img: 'team/irudaya.png', tall: true }, { n: 'Francis Xavier', role: 'Web developer', bio: 'Owns build quality โ€” speed budgets, semantic markup, accessibility and the documentation you keep after launch.', id: 'team-2', img: 'team/francis.png' }, { n: 'David', role: 'SEO specialist', bio: 'Technical audits, on-page architecture and the editorial link acquisition that keeps authority compounding.', id: 'team-3', img: 'team/david.png', tall: true }, { n: 'Regina', role: 'Graphic designer', bio: 'Identity systems, campaign collateral and the social assets that keep the brand consistent everywhere.', id: 'team-4', img: 'team/regina.png' }, ]; function TeamSection() { const [i, setI] = React.useState(0); return (
); } Object.assign(window, { TeamSection, TEAM });