/* IGI — Claims Center */ function Claims({ navigate }) { const [tab, setTab] = React.useState('file'); return ( <>
Claims Center

We're here when
things go wrong.

File a new claim in minutes, track an existing one, or request emergency assistance — 24 hours a day, 7 days a week.

Call 111-308-308
{tab === 'file' && } {tab === 'track' && } {tab === 'help' && }
); } function FileClaim() { const [step, setStep] = React.useState(0); const types = [ { id: 'motor', i: I.Car, l: 'Motor', d: 'Accident, theft, damage' }, { id: 'home', i: I.Home, l: 'Home', d: 'Burglary, fire, leakage' }, { id: 'health', i: I.Heart, l: 'Health', d: 'Hospitalization, OPD' }, { id: 'travel', i: I.Plane, l: 'Travel', d: 'Cancellation, baggage' }, ]; const [type, setType] = React.useState('motor'); return (
{step === 0 && ( <>
Step 1 of 3

What type of claim is this?

Pick the policy type that matches your incident.

{types.map(t => { const sel = type === t.id; return ( ); })}
)} {step === 1 && ( <>
Step 2 of 3

Tell us what happened

The more detail you give, the faster we can act.