const CLIENTS = [ { name: 'Future Sphere', kind: 'image', img: 'assets/future-sphere-logo.png', color: '#0A2347' }, { name: 'Accredia', kind: 'image', img: 'assets/accredia-t.png' }, { name: 'HSBC', kind: 'image', img: 'assets/hsbc-t.png' }, { name: 'Mpower Plus', kind: 'image', img: 'assets/mpower-t.png' }, { name: 'Solcom', kind: 'image', img: 'assets/solcom-t.png' }, { name: 'SThree', kind: 'image', img: 'assets/sthree-t.png' }, ]; function ClientLogo({ name, kind, img, color }) { // Render placeholder logos (geometric mark or stylized wordmark) const initials = name.split(' ').map(w => w[0]).join('').slice(0, 2).toUpperCase(); if (kind === 'image') { return (