// === Seven Yachts — Home === function Hero({ lead, openBooking, setRoute, heroMode }) { const titles = { en: { tag: 'Experience The Ultimate Luxury.', t1: 'Your private', t2: 'yacht,', t3: 'your way.', sub: 'Cinematic charters from Dubai Harbour. A fleet of seventeen vessels — Sunseeker, Princess, Azimut, Benetti — and a concierge crew that disappears when you want to be alone.' }, ar: { tag: 'اختبر الفخامة المطلقة.', t1: 'يختك', t2: 'الخاص،', t3: 'بطريقتك.', sub: 'رحلات بحرية فاخرة من ميناء دبي. أسطول مكوّن من سبعة عشر يختاً — صنّاع عالميون، طاقم أوروبي مدرب.' }, ru: { tag: 'Высшая роскошь.', t1: 'Ваша яхта,', t2: 'ваш', t3: 'маршрут.', sub: 'Кинематографичные чартеры из гавани Дубая. Семнадцать яхт. Европейский экипаж. Конфиденциальный сервис.' }, zh: { tag: '尊享至臻奢华。', t1: '您的', t2: '私人游艇,', t3: '随心所至.', sub: '从迪拜港启航的电影级游艇租赁。十七艘游艇,欧洲船员,私密管家服务。' }, }; const tt = titles[lead.lang] || titles.en; return (
{`${lead.name}
FEATURED · {lead.name.toUpperCase()} {lead.builder.toUpperCase()} {lead.length}FT DUBAI HARBOUR

{tt.t1}
{tt.t2}
{tt.t3}

— {tt.tag}

{tt.sub}

WhatsApp Concierge

The Featured Vessel

{lead.name}

{lead.tagline}

BUILDER
{lead.builder}
LENGTH
{lead.length} ft
{lead.cruisingGuests && ( <>
CRUISING
{lead.cruisingGuests} guests
OVERNIGHT
{lead.overnightGuests} guests
)}
from AED {fmtAED(lead.fromHourly)}/hr
); } window.Hero = Hero; function Home({ setRoute, favs, toggleFav, openBooking, lang, showRates, heroMode }) { const lead = findYacht('lucien'); lead.lang = lang; // Editorial featured grid (3 cards: big + 2 small) const featured = ['lucien', 'suffuriya', 'santorini', 'sky-fall'].map(findYacht); return (
{/* Availability strip */}
Plan in 30 seconds

Check availability — we'll WhatsApp you back.

openBooking({ ...d, source: 'home' })} />
{/* Featured fleet — editorial grid */}
Selected Fleet · Seventeen vessels

A fleet curated, not catalogued.

From an intimate 70ft Sunseeker for sunset to a 200ft Benetti for a board offsite, each vessel is owned or under exclusive management — every spec verified, every crew known by name.

setRoute({ name: 'yacht', slug: s })} showRates={showRates} />
setRoute({ name: 'yacht', slug: s })} showRates={showRates} />
setRoute({ name: 'yacht', slug: s })} showRates={showRates} />
setRoute({ name: 'yacht', slug: s })} showRates={showRates} />
{/* Experiences */}
On Board

Six ways to spend a day at sea.

Every charter can be quietly themed — a candlelit dinner, an open-air screening, a sound-bath at anchor. Tell us the occasion, we'll stage it.

{EXPERIENCES.map(e => (
{e.title}

{e.title}

{e.desc}

))}
{/* Destinations */}
Route Ideas

From the harbour, three coastlines.

A short cruise to Burj Al Arab. A sunset loop of the Palm. An evening of skyline along the Marina. Build any of them with our concierge — or compose your own.

{DESTINATIONS[0].title}
{DESTINATIONS[0].n}

{DESTINATIONS[0].title}

{DESTINATIONS[0].duration}

{DESTINATIONS.slice(1).map(d => (
{d.title}
{d.n}

{d.title}

{d.duration}

))}
More Routes

World Islands, Zaya Nurai, Yas Marina, Sir Bani Yas, J1 Beach, RAK.

Day-routes, overnight passages and multi-day itineraries — our concierge writes them per booking.

{/* Promise strip */}
Why Seven Yachts
{PROMISES.map(p => (
{p.num}

{p.title}

{p.desc}

))}
{/* Final CTA */}
Concierge · Always Open

Tell us the date.
We'll do the rest.

WhatsApp +971 52 121 7833 · info@sevenyachts.com · Dubai Harbour DA37–DA41

WhatsApp Concierge Call +971 52 121 7833
); } window.Home = Home;