/* Sell / Finance / About / Contact / Metaverse pages */ /* ============== SELL YOUR CAR ============== */ function SellPage({ navigate, openEnquiry }) { const [step, setStep] = useStateP(1); const [form, setForm] = useStateP({ make: "", model: "", year: "", mileage: "", condition: "Excellent", name: "", phone: "", email: "", notes: "", }); const update = (k, v) => setForm(f => ({ ...f, [k]: v })); return (
{/* Hero */}
Sell · Trade-in · Valuation

Tell us about
your car.

A senior buyer will give you a no-obligation indicative offer within 24 hours. Bring it in for a 30-minute inspection, leave with payment the same day.

{/* Process strip */}
{[ { n: "01", t: "Submit details", d: "Make, model, mileage, condition. Photos help." }, { n: "02", t: "Indicative offer", d: "Range delivered within 24 hours via call or WhatsApp." }, { n: "03", t: "30-min inspection", d: "Drop the car at Al Quoz. Espresso provided." }, { n: "04", t: "Cash same day", d: "Settlement in AED via transfer, or held until your new car is delivered." }, ].map((s, i, a) => (
{s.n}
{s.t}

{s.d}

))}
{/* Form */}
Valuation Request

Three steps. Five minutes.

{[1, 2, 3].map(n => (
))}
{step === 1 && (
update("make", e.target.value)} placeholder="e.g. Mercedes-Benz" />
update("model", e.target.value)} placeholder="e.g. S 500 Coupé" />
update("year", e.target.value)} placeholder="2019" />
update("mileage", e.target.value)} placeholder="45,000" />
{["Concours", "Excellent", "Good", "Fair", "Project"].map(c => ( update("condition", c)}>{c} ))}
)} {step === 2 && (
update("name", e.target.value)} />
update("phone", e.target.value)} placeholder="+971" />
update("email", e.target.value)} />