/* global React, Icon, Wordmark, VehicleCard, TrustStrip, SectionHead, CV_INVENTORY, CV_FACTS, CV_BRANDS */ const { useState, useEffect, useMemo, useRef } = React; // ───────────────────────────────────────────────────────────────────────────── // HOME // ───────────────────────────────────────────────────────────────────────────── function HomePage({ setPage, openVehicle }) { const featured = CV_INVENTORY.slice(0, 4); const lineup = CV_INVENTORY.slice(4, 10); return (
{/* ─── Cinematic hero ─── */}
CV Auto — Al Quoz, Dubai · {CV_FACTS.since}

A trusted destination for
luxury & performance
cars in Dubai.

Curated multi-brand inventory, transparent consignment, and concierge-grade support for buyers and sellers across the GCC.

WhatsApp the showroom
Showroom open today — 10:00 to 21:00
{/* ─── Trust strip ─── */}
{/* ─── Featured / just arrived ─── */}
setPage({ name: "inventory" })}> See all inventory } />
{featured.map(v => )}
{/* ─── Editorial split — Consignment ─── */}
Consign with CV Auto

We sell your car for you —
and clean it daily
while it sits on the floor.

The standout secondary service. Free inspection & market assessment, professional photography and video, multi-platform marketing across Dubizzle, DubiCars and social, buyer negotiation, and finance support — while you retain full ownership of the vehicle.

  1. 01Inspection & price assessment
  2. 02Studio photography & video
  3. 03Listed across every major channel
  4. 04We handle inquiries & negotiation
  5. 05Daily care while displayed
  6. 06Buyer finance assistance
{/* ─── Brand wall (text only — no OEM logos, rights not held) ─── */}
{CV_BRANDS.map(b => {b})}
{/* ─── More inventory teaser ─── */}
setPage({ name: "inventory" })}> Open the inventory } />
{lineup.map(v => )}
{/* ─── Visit the showroom ─── */}
Visit the showroom

4B Street, opposite Al Serkal Avenue.

Address

{CV_FACTS.address}

Hours
{CV_FACTS.hours.map(([d, t]) => (

{d}    {t}

))}
Message on WhatsApp
); } window.HomePage = HomePage;