/* global React, VEHICLES, BRANCHES */ const { useState: useState2, useEffect: useEffect2, useMemo: useMemo2 } = React; /* ============================================================ VEHICLE DETAIL — the flagship page ============================================================ */ const VehicleScreen = ({ vehicle, navigate, openVehicle, onEnquire }) => { const v = vehicle; const [imgIdx, setImgIdx] = useState2(0); useEffect2(() => { setImgIdx(0); window.scrollTo(0, 0); }, [v && v.id]); if (!v) return null; const gallery = v.gallery && v.gallery.length ? v.gallery : [v.photo]; const similar = useMemo2(() => VEHICLES.filter(x => x.id !== v.id && (x.make === v.make || x.body === v.body)).slice(0, 3), [v.id] ); const specs = [ ["Model Year", v.year], ["Mileage", v.mileage], ["Exterior", v.exterior], ["Interior", v.interior], ["Engine", v.engine], ["Power", v.power], ["Transmission", v.transmission], ["Stock ID", v.stockId], ]; return (
{/* Cinematic gallery */}
{v.year} · {v.make} Stock {v.stockId} {v.condition === "new" ? "New · 0 owners" : "Pre-owned · 1 owner"} Photo {imgIdx + 1}/{gallery.length}
{gallery.map((g, i) => (
{/* Title block */}
{v.year} · {v.make}

{v.model.split(" ")[0]} {v.model.split(" ").slice(1).join(" ") || v.subtitle.split(" ")[0]}

{v.subtitle}. {v.engine}, {v.power}. Finished in {v.exterior} over {v.interior}. On display at the Main Branch — Sheikh Zayed Road, Dubai. Worldwide delivery on request.

Price Price on application Discreet enquiry · CRM-handled · WhatsApp on supply
{/* CTA cluster */}
+971 4 378 2222
{/* Spec table */}
Technical details

The specification.

Every field below is drawn directly from the showroom feed — model year, mileage, exterior and interior trim, engine, peak power, transmission and stock ID. No invented specifications.

If you would like the complete service history, original window sticker, or build-sheet, the concierge will share it on request.

Live feed · revalidates every 60s
{specs.map(([k, val]) => (
{k}
{val}
))}
{/* Description */}
Description

From the concierge.

A {v.subtitle.toLowerCase()} {v.model} in our care at the Dubai flagship — presented in {v.exterior} over a {v.interior} cabin. The car has been prepared to Alain Class standards and is ready for collection or private viewing by appointment.

"A car of this calibre asks for the right setting. We can arrange a private viewing at any of our five branches — or, if you prefer, at your residence or hotel."

First-owner provenance with full documentation, original tool-kit, factory accessories and service history available on request. The vehicle is in stock and ready for delivery within the U.A.E., or for worldwide export with full documentation handled by our team.

For private collectors abroad, our export team arranges shipping to any port or airport worldwide — established corridors include the GCC, Europe, the Russian-speaking market and Greater China.

{/* Similar */}
Continue browsing

You may also be interested.

{similar.map(s => ( ))}
); }; window.VehicleScreen = VehicleScreen; /* ============================================================ SELL YOUR CAR ============================================================ */ const SellScreen = ({ navigate, onEnquire }) => { const [form, setForm] = useState2({ name: "", phone: "", email: "", brand: "", model: "", year: "", mileage: "", price: "", notes: "" }); const [sent, setSent] = useState2(false); const submit = (e) => { e.preventDefault(); setSent(true); window.scrollTo({top: 0, behavior: "smooth"}); }; return (
Sell your car · Trade-in

Bring your car
to a trusted home.

We acquire high-end vehicles privately from collectors and individuals. Submit a few photos and details — receive a discreet valuation from our buyer within one business day. Confidentiality assured.

How it works

Three steps from
enquiry to settlement.

Each enquiry is handled by a single dedicated buyer — no auctions, no anonymous platforms, no fees. We pay in cleared U.A.E. dirhams, and we handle the transfer paperwork at our showroom.

01

Submit

Share make, model, year, mileage and a few photos. The form takes under three minutes.

02

Valuation

A buyer responds within one business day with an indicative figure and any clarifying questions.

03

Inspect & settle

Bring the car to any branch for a brief in-person inspection. We settle the same day; ownership transfer is handled by us.

{sent ? (

Valuation requested.

One of our buyers will reply within one business day to {form.email || "your email"}.

) : (

Tell us about your car.

All fields confidential. Photos accelerate valuation but are not required.

setForm({...form, name:e.target.value})}/>
setForm({...form, phone:e.target.value})}/>
setForm({...form, email:e.target.value})}/>
setForm({...form, brand:e.target.value})}/>
setForm({...form, model:e.target.value})}/>
setForm({...form, year:e.target.value})}/>
setForm({...form, mileage:e.target.value})}/>
setForm({...form, price:e.target.value})}/>