/* global React, Icon, CV_FACTS */ const { useState } = React; // ───────────────────────────────────────────────────────────────────────────── // CONSIGNMENT — the "storage-adjacent" hook // ───────────────────────────────────────────────────────────────────────────── function ConsignmentPage({ setPage }) { const [stage, setStage] = useState(1); const [form, setForm] = useState({ car: "", year: "", mileage: "", price: "", name: "", phone: "", email: "", message: "" }); const [submitted, setSubmitted] = useState(false); const stages = [ { n: "01", h: "Inspection", c: "Free walk-through. Our team rates condition, panel, paint and mechanicals — and benchmarks the market." }, { n: "02", h: "Photography", c: "Studio-grade stills and walk-around video, shot on our showroom floor — included." }, { n: "03", h: "Marketed", c: "Listed across Dubizzle, DubiCars, the CV Auto site and every social channel." }, { n: "04", h: "Negotiated", c: "We handle the inquiries, screen the buyers, and bring you the offers. You decide." }, { n: "05", h: "Cared for", c: "Daily cleaning while displayed in the showroom. Your car stays photo-ready." }, { n: "06", h: "Closed", c: "Buyer finance assistance, paperwork and handover — you keep full ownership until we close." } ]; const onSubmit = e => { e.preventDefault(); setSubmitted(true); }; return (
Consignment · the standout secondary service

We sell your car for you.
You keep ownership.
We keep it photo-ready.

Hand your car to the CV Auto desk and we run the entire sales process — from inspection and studio photography to multi-platform marketing, buyer negotiation, and a daily clean on the showroom floor. The closest thing we offer to long-term storage, and the most transparent way to move a high-value car in Dubai.

Ask a question first
{/* Process strip */}
Six-step process

How it actually runs.

{stages.map((s, i) => (
{s.n}
{s.h}

{s.c}

{i < stages.length - 1 &&
}
))}
{/* What we don't do — transparency */}
Worth saying plainly

What consignment isn't.

We don't offer

  • Climate-controlled long-term storage
  • A detailing studio, PPF or ceramic coating
  • Battery and tyre tending packages
  • A membership programme

If the brief on your side calls for any of the above, talk to us — we'll point you to the right partner in the Al Quoz cluster rather than overpromising.

We do offer

  • Full sales process on your behalf
  • Studio photography and walk-around video
  • Distribution to every Dubai luxury channel
  • Daily cleaning while the car is on display
  • Buyer finance & insurance assistance
  • You retain ownership until handover
{/* Consignment form */}
Step {stage} of 3

Tell us about the car.

A few essentials gets a desk advisor on the phone. Hi-res photos and the V5 are welcome but not required — we'll arrange the inspection visit.

Or call the desk directly · {CV_FACTS.phone}
{submitted ? (

Consignment request received.

A senior advisor will call within one business day to book your inspection. Please have the V5 and any service history ready.

) : ( <>
{stage === 1 && ( <>
setForm({...form, car: e.target.value})} placeholder="e.g. 2019 Mercedes-AMG GT R" />
setForm({...form, year: e.target.value})} />
setForm({...form, mileage: e.target.value})} />
setForm({...form, price: e.target.value})} placeholder="AED — or leave blank for our assessment" />
)} {stage === 2 && ( <>
setForm({...form, name: e.target.value})} />
setForm({...form, phone: e.target.value})} placeholder="+971…" />
setForm({...form, email: e.target.value})} />