/* Hayes Global Mobility — UI kit: Hero + service quick-cards */
(function () {
const { Button } = window.HayesGlobalMobilityDesignSystem_489ece;
function Hero({ onApply }) {
return (
{/* skyline photo */}
Your Gateway
to Global Opportunities
Visas | Careers | Investments
);
}
function ServiceStrip({ onNavigate }) {
const items = [
{ tone: 'light', icon: 'file-check', title: 'Visa Services', sub: 'Expert Immigration Solutions', route: 'Visas' },
{ tone: 'navy', icon: 'briefcase', title: 'Job Placement', sub: 'International Career Opportunities', route: 'Careers' },
{ tone: 'navy', icon: 'handshake', title: 'Investment & Procurement', sub: 'Global Business Solutions', route: 'Investments' },
];
const tones = {
light: { bg: '#fff', fg: 'var(--text-heading)', sub: 'var(--text-muted)', chip: 'var(--color-navy-50)', chipFg: 'var(--color-navy-600)' },
navy: { bg: 'var(--color-navy-700)', fg: '#fff', sub: 'rgba(255,255,255,0.74)', chip: 'rgba(255,255,255,0.12)', chipFg: '#fff' },
};
return (
{items.map((it) => {
const t = tones[it.tone];
return (
onNavigate && onNavigate(it.route)} style={{
display: 'flex', alignItems: 'center', gap: 16, cursor: 'pointer',
background: t.bg, borderRadius: 'var(--radius-lg)', padding: '22px 24px',
boxShadow: 'var(--shadow-lg)', border: it.tone === 'light' ? '1px solid var(--border-subtle)' : 'none',
}}>
);
})}
);
}
window.HayesHero = Hero;
window.HayesServiceStrip = ServiceStrip;
})();