/* Hayes Global Mobility — UI kit: Home page body */ (function () { const NS = window.HayesGlobalMobilityDesignSystem_489ece; const { SectionHeading, ServiceCard, Testimonial, Button } = NS; const I = (n, s = 24) => ; const wrap = { maxWidth: 'var(--container-max)', margin: '0 auto', padding: '0 40px' }; function About({ onNavigate }) { return (

We provide comprehensive visa support, overseas job placements, and strategic investment solutions. Hayes Global Mobility is your trusted partner in navigating your path to success — for professionals, students, and businesses alike.

Offices in 12 global cities
); } function Stats() { const stats = [['12k+', 'Visas Approved'], ['40+', 'Countries Served'], ['98%', 'Success Rate'], ['15 yrs', 'Trusted Expertise']]; return (
{stats.map(([n, l]) => (
{n}
{l}
))}
); } function Testimonials() { const items = [ { q: 'Secured my dream job in London thanks to Hayes Global Mobility.', n: 'Sarah Mitchell', r: 'Relocated to London' }, { q: 'Smooth relocation to Singapore with expert guidance all the way.', n: 'James Anand', r: 'Software Engineer' }, { q: 'Hayes helped us make the right investment decisions abroad.', n: 'Michael Reyes', r: 'Managing Director' }, ]; return (
{items.map(t => )}
); } function Services({ onNavigate }) { return (
onNavigate('Visas')} /> onNavigate('Careers')} /> onNavigate('Investments')} />
); } function ContactBand({ onNavigate }) { return (

Get in Touch

Contact Us to Begin Your Global Adventure

info@hayesglobalmobility.com
); } function Home({ onNavigate }) { return (
{React.createElement(window.HayesHero, { onApply: () => onNavigate('Apply') })} {React.createElement(window.HayesServiceStrip, { onNavigate })}
); } window.HayesHome = Home; })();