{[
"▲ 1,500 HP · Bugatti Divo",
"● 0–100 KM/H IN 2.4S",
"▲ 950 HP · LaFerrari",
"● TOP SPEED 440 KM/H",
"▲ V12 NATURALLY ASPIRATED",
"● 1 OF 14 · LAMBORGHINI VENENO",
"▲ QUAD-TURBO W16",
"● 200+ CARS ON FLOOR",
"▲ 6.5L V12 · MONZA SP2",
"● 30+ MARQUES CURATED",
"▲ 1,500 HP · Bugatti Divo",
"● 0–100 KM/H IN 2.4S",
"▲ 950 HP · LaFerrari",
"● TOP SPEED 440 KM/H",
"▲ V12 NATURALLY ASPIRATED",
"● 1 OF 14 · LAMBORGHINI VENENO"
].map((t, i) => (
{t}
))}
{/* PROPOSITION + METRICS */}
The Showroom
A single address for the cars that don't get listed.
VIP Motors has operated on Sheikh Zayed Road since 2016, sourcing and curating new and pre-owned exotics for collectors, principals, and international buyers. Press has described the floor as "one of the largest luxury showrooms in the UAE," with roughly 200 cars on display daily and an expanded capacity announced in 2023.
¹ Figure attributed to company press; subject to confirmation.
{/* FEATURED */}
▲ Currently on the floor
Featured vehicles
{featured.map((v, i) => (
))}
Demo data — production inventory binds to feed / DMS
{/* IMAGE SPLIT — Showroom */}
Visit · Al Quoz 3
Step onto the floor.
Private viewings are arranged daily. The showroom sits on Sheikh Zayed Road near Mashreq Bank — climate-controlled, valet on arrival, and full export logistics handled in-house.
{/* SERVICES */}
What we do
End-to-end for the buyer who knows what they want.
{SERVICES.map((s, i) => (
{s.k}
{s.title}
{s.body}
))}
{/* PERFORMANCE SPOTLIGHT — big red numbers */}
{/* diagonal red speed-line accents */}
● Performance
Built for the line between law and physics.
Sample of what's parked on the floor today — figures are manufacturer published specs, verified on enquiry.
{[
{ t: "Concierge service", b: "Door-to-door collection, storage, and detail. Annual programmes for residents and seasonal owners." },
{ t: "Specialist workshop", b: "Manufacturer-certified technicians for engine-out service intervals on Ferrari, Lamborghini, Bugatti and McLaren." },
{ t: "Track-day partnerships", b: "Closed-circuit days at Yas Marina and Dubai Autodrome — coordinated with the marque support teams." },
{ t: "Insurance liaison", b: "Bespoke cover via specialist brokers for collector-grade and limited-production vehicles. Subject to confirmation." }
].map((c, i) => (
0{i + 1}
{c.t}
{c.b}
))}
{/* PRESS / QUOTES STRIP */}
Press
{[
{ q: "One of the largest luxury showrooms in the UAE.", src: "Entrepreneur ME" },
{ q: "A floor where the cars don't make it to the listing sites.", src: "Dubai Collector Weekly" },
{ q: "Sheikh Zayed Road's reference point for limited-production exotics.", src: "Drive Arabia" }
].map((p, i) => (
"
{p.q}
"
— {p.src}
))}
Illustrative pull-quotes for prototype review · publication names placeholder
{/* CTA BAND */}
Looking for something specific?
We source the cars that don't appear online.
);
}
// ── INVENTORY ─────────────────────────────────────────────────────
function InventoryPage({ navigate, onEnquire, onVehicle }) {
const [bodyFilter, setBodyFilter] = useState("All");
const [makeFilter, setMakeFilter] = useState("All");
const [sort, setSort] = useState("featured");
const [view, setView] = useState("grid"); // grid | list
const filtered = useMemo(() => {
let out = INVENTORY.slice();
if (bodyFilter !== "All") out = out.filter(v => v.body === bodyFilter);
if (makeFilter !== "All") out = out.filter(v => v.make === makeFilter);
if (sort === "year-new") out.sort((a, b) => b.year - a.year);
if (sort === "year-old") out.sort((a, b) => a.year - b.year);
if (sort === "mileage") out.sort((a, b) => (a.mileage || 0) - (b.mileage || 0));
return out;
}, [bodyFilter, makeFilter, sort]);
return (
{/* Header */}
Inventory · {INVENTORY.length} vehicles
The floor, live.
Every vehicle is in our Dubai showroom or available by appointment. Demo data shown — production inventory updates daily from the dealer feed.
{/* Filter bar */}
{/* Body styles */}
Body
{BODY_STYLES.map(b => (
))}
{/* Make + Sort */}
Make
{MAKES.slice(0, 9).map(m => (
))}
Sort
{/* Grid */}
{filtered.length === 0 ? (
No matches.
) : (
{filtered.map((v, i) => (
))}
)}
Showing {filtered.length} of {INVENTORY.length} · Demo data — feed binding in production
);
}
// ── VEHICLE DETAIL ────────────────────────────────────────────────
function VehiclePage({ slug, navigate, onEnquire, onVehicle }) {
const v = INVENTORY.find(x => x.slug === slug) || INVENTORY[0];
const [activeImg, setActiveImg] = useState(0);
const [tab, setTab] = useState("specs");
// include a few extra gallery shots if vehicle has only one image
const gallery = v.images.length >= 2
? v.images
: [v.images[0], "media/showroom-primary.webp", "media/showroom-01.webp"];
useEffect(() => { setActiveImg(0); window.scrollTo({ top: 0, behavior: "instant" }); }, [slug]);
const related = INVENTORY.filter(x => x.slug !== v.slug && x.body === v.body).slice(0, 3);
return (
The {v.year} {v.make} {v.model} arrived in our showroom direct from a single owner, accompanied by full service history and manufacturer documentation.
Presented in {v.exterior} over {v.interior}, with {v.mileage ? v.mileage.toLocaleString() : "low"} km on the odometer. Inspected by our in-house technicians; export documentation can be prepared on confirmation of sale. Detailed condition report and additional media supplied on enquiry.
Specifications shown are subject to verification at the time of sale. Demo content for prototype review.
)}
{tab === "location" && (
Where to find this car
507 Sheikh Zayed Road, Al Quoz 3, Dubai
Near Mashreq Bank. Climate-controlled showroom; valet on arrival. Open Mon–Thu & Sat 10:00–21:00, Fri 14:00–21:00.
Submit your vehicle for confidential valuation. Direct purchase or consignment; settlement typically within 72 hours of inspection.
How it works
{[
["01", "Submit", "Tell us about the car. We'll request photos and history if not provided."],
["02", "Inspect", "Bring it to our Sheikh Zayed Road showroom — typically 30 minutes."],
["03", "Offer", "Same-day written offer. Direct purchase or consignment, your choice."],
["04", "Settle", "Bank transfer within 72 hours of agreement."]
].map(([k, t, b]) => (
{k}
{t}
{b}
))}
{sent ? (
We'll be in touch.
A specialist will review your submission and respond — typically within four hours during showroom hours.
) : (
)}
);
}
// ── ABOUT ─────────────────────────────────────────────────────────
function AboutPage({ navigate, onEnquire }) {
return (
About
A showroom shaped around the buyer.
Founded 2016
Ahmad Nabil, Founder & CEO
Founded in 2016 by Ahmad Nabil, VIP Motors built its reputation on a single principle: the cars worth owning are rarely the cars listed online. From a flagship showroom on Sheikh Zayed Road, we curate new and pre-owned vehicles from the marques that define the segment — and source the ones that don't appear in the trade.
In 2023 the floor was expanded to accommodate over 250 vehicles on display — among the largest dedicated luxury and exotic floors in the region.¹ Clients include collectors across the GCC, exporters supplying European and Asian markets, and principals commissioning bespoke builds with our coachbuilding partners.
¹ Founder, founding year, and 2023 expansion figures attributed to Entrepreneur.com and the company's 2023 press release. Marque-franchise status, customisation and finance services subject to client confirmation.
We introduce qualified buyers to private bank and specialist asset-finance partners across the GCC. Terms are negotiated to the vehicle, not to a template — typical structures range from balloon leases on collector cars to straight finance on registered exotics.
*Important
Finance and insurance services appear on third-party SEO listings for VIP Motors but are not currently confirmed on the official website. Treat the partner roster, rates, and product list shown here as subject to client confirmation before launch.