/* Hayes Global Mobility — UI kit: About page */ (function () { const NS = window.HayesGlobalMobilityDesignSystem_489ece; const { SectionHeading, Button, Card } = NS; const I = (n, s = 22) => ; const wrap = { maxWidth: 'var(--container-max)', margin: '0 auto', padding: '0 40px' }; function About({ onNavigate }) { const offices = [ ['London', '8 Finsbury Circus, EC2M', 'European operations'], ['London', '8 Finsbury Circus, EC2M', 'European operations'], ['New York', '500 Fifth Ave, Manhattan', 'Americas desk'], ]; const values = [ ['shield-check', 'Trusted Expertise', 'Specialists who navigate complex cross-border requirements with accuracy and care.'], ['globe', 'Global Reach, Local Insight', 'Offices on three continents combine on-the-ground knowledge with worldwide coverage.'], ['route', 'End-to-End Support', 'One partner from first application to arrival, onboarding, and beyond.'], ]; return (
{React.createElement(window.HayesPageHeader, { eyebrow: 'About Us', title: 'Your Trusted Partner in International Relocation', sub: 'We specialize in simplifying cross-border transitions — immigration, careers overseas, and international procurement and investment.', })}

At Hayes Global Mobility, our team delivers end-to-end support for immigration services, career opportunities overseas, and international procurement and investment strategies.

With offices in London, and New York, we combine local insight with global reach to help you succeed anywhere in the world.

London · New York
{[['12k+', 'Visas Approved'], ['40+', 'Countries Served'], ['98%', 'Success Rate'], ['15 yrs', 'Trusted Expertise']].map(([n, l]) => (
{n}
{l}
))}
{values.map(([ic, t, d]) => (
{I(ic, 24)}

{t}

{d}

))}
{offices.map(([city, addr, role]) => (

{city}

{addr}
{role}
))}
{React.createElement(window.HayesCTABand, { title: 'Ready to begin your global journey?', sub: 'Tell us your goals and a Hayes advisor will be in touch within one business day.', onCta: () => onNavigate('Apply') })}
); } window.HayesAbout = About; })();