/* Page components — Deals on Wheels */ const { useState: useStateP, useEffect: useEffectP, useMemo: useMemoP, useRef: useRefP } = React; /* ============== HOME ============== */ function HomePage({ navigate, openEnquiry }) { const featured = VEHICLES.filter(v => v.featured); const hero = featured[0]; const [heroIdx, setHeroIdx] = useStateP(0); const heroes = [featured[0], featured[1], featured[2]]; useEffectP(() => { const t = setInterval(() => setHeroIdx(i => (i + 1) % heroes.length), 6500); return () => clearInterval(t); }, []); const cur = heroes[heroIdx]; return (
{/* ---------- HERO ---------- */}
{heroes.map((h, i) => (
))}
Featured · {cur.id.toUpperCase()}

{cur.year}
{cur.make}
{cur.model}{cur.variant}

{/* Carousel dots */}
{heroes.map((h, i) => ( ))}
Sheikh Zayed Road · Exit 46
Open by appointment · Mon – Sat
{/* ---------- PROPOSITION / NUMBERS BAND ---------- */}
Independent · Multi-Brand

A private showroom for cars chosen with intention — not algorithms.

{[ { n: "15+", l: "Years in Dubai", sub: "Trading since 2008" }, { n: "11", l: "Marques", sub: "Ferrari to Audi" }, { n: "4", l: "Lead Channels", sub: "Enquire · WA · Call · Visit" }, ].map((s, i) => (
{s.n}
{s.l}
{s.sub}
))}
{/* ---------- FEATURED INVENTORY ---------- */}
navigate("inventory")}> All Inventory → } />
{featured.slice(0, 6).map(v => ( navigate("vehicle", v)} /> ))}
{/* ---------- SELL YOUR CAR BAND ---------- */}
Sell · Trade-In · Valuation

We buy cars,
not just stories.

A no-obligation valuation in 24 hours. We buy all makes — luxury, exotic, classic, and clean pre-owned — with transparent paperwork and cash settlement on the day if the offer is right for you.

01 · 24-hour offer 02 · We handle papers 03 · Cash on the day
Showroom
Snapshot Quote
~ AED 285,000
2017 Porsche 911 · 32k km
* indicative — not a binding offer
{/* ---------- BRAND STRIP ---------- */}
Brands we trade in · GCC & European spec
{BRANDS.map((b, i) => ( ))}
{/* ---------- METAVERSE TEASER ---------- */}
Virtual Showroom · 3D + AR

Walk the floor
from anywhere.

Open the Deals on Wheels app and step inside the Al Quoz showroom in 3D — rotate any vehicle to scale in augmented reality, look under the bonnet, and request a price without leaving your sofa.

{/* Stylised device frame */}
● AR · LIVE SCALE 1:1
Bentley Continental GT
↺ ROTATE + SCALE ⌖ PLACE
Android live · iOS soon
{/* ---------- CONTACT BAND ---------- */}
Visit · Al Quoz

By appointment.
By introduction.

Address
Sheikh Zayed Road, Exit 46
After Oasis Centre, Al Quoz 1
Dubai · UAE
Phone
+971 52 790 0000
sales@dealsonwheels.ae
Hours
Mon – Sat · 09:00 – 21:00
Sunday closed
); } function Stat({ label, value }) { return (
{label}
{value}
); } Object.assign(window, { HomePage });