// Major page sections — composed by app.jsx const { useState: useState2, useEffect: useEffect2, useRef: useRef2 } = React; function Nav({ lang, setLang, scrolled, onRegister, onBookViewing }) { const t = I18N[lang]; return (
{["en", "ar", "ru", "zh"].map(l => ( ))}
); } function Hero({ lang, variant, onRegister, onBookViewing }) { const t = I18N[lang]; return (
Butterfly Towers render
Betterhomes · since 1986 | Off-plan launch | Business Bay, Dubai | Handover Q4 2027 | Scroll ↓
{t.eyebrowHero}

{t.titleA}
{t.titleB}

{t.lede}

{t.whatsapp}
Location
Business Bay
Handover
Q4 2027
Residences
1 — 4 BR
Status
Pre-launch · Registering
); } function TaglineStrip({ lang }) { const t = I18N[lang]; return (
"{t.trustLine}"
{t.trustMeta.map((m, i) => {m})}
); } function Marquee() { const tokens = [ "Twin residential towers", "Business Bay", "Limited early-registrant release", "Designed for skyline, light, water", "Pre-launch", "Q4 2027 handover", ]; const renderRow = () => ( {tokens.map((tok, i) => ( {tok} ))} ); return ( ); } function Editorial({ lang }) { const t = I18N[lang]; return (
{t.storyEyebrow}

A measured response to skyline, light and water.

Butterfly Towers is a twin-tower residential development positioned on a prominent Business Bay parcel — close enough to Downtown's pull to feel connected, far enough back to breathe. The design language is deliberately restrained: a warm cast-stone frame, deep glass infill, and balcony depths tuned to the angle of the afternoon sun.

The brief was simple. Build something that ages well — for buyers who plan to stay, and for investors backing a community that's still maturing. Every residence is dual-aspect; every floor is finished with the same level of detail; the lobby is treated as architecture, not décor.

We're releasing the first tranche of residences to early registrants ahead of public sale. Specifications, floor plates and final pricing are with the developer for sign-off — we'll share them privately once confirmed.

); } function Location({ lang }) { const places = [ { name: "Downtown Dubai", dist: "2.4 km" }, { name: "Burj Khalifa", dist: "3.1 km" }, { name: "DIFC", dist: "4.0 km" }, { name: "Dubai Mall", dist: "3.6 km" }, { name: "DXB Airport", dist: "12 km" }, { name: "Business Bay Metro", dist: "850 m" }, ]; return (
02 — Location

Anchored in Business Bay — Dubai's working heart.

Business Bay canal
25.1864° N · 55.2662° E

Five minutes to Downtown. Ten to DIFC. The canal at your door.

The plot sits on the south bank of the Dubai Water Canal, in a stretch of Business Bay that's transitioned from office-dominant to genuinely mixed-use — restaurants, water-taxis, the boardwalk, and a school catchment that now stretches from Downtown to Al Quoz.

    {places.map(p => (
  • {p.name} {p.dist}
  • ))}
); } function Residences({ lang }) { const concepts = [ { n: "A", name: "One-bedroom", em: "residences", blurb: "Dual-aspect plates, wrap-around balcony, integrated kitchen.", size: "~ 720–820 sqft" }, { n: "B", name: "Two-bedroom", em: "skyline suites", blurb: "Corner plates with twin orientations — canal and Downtown.", size: "~ 1,150–1,320 sqft" }, { n: "C", name: "Three-bedroom", em: "family floors", blurb: "Family layouts with maid's, storage, and a separate study.", size: "~ 1,650–1,820 sqft" }, { n: "D", name: "Four-bedroom", em: "penthouses", blurb: "Top-floor duplex penthouses with private pool deck.", size: "~ 4,000+ sqft" }, ]; return (
03 — Residences

Four concepts. One standard of finish.

{concepts.map((c, i) => (
CONCEPT — {c.n}

{c.name}
{c.em}

{c.blurb}

{c.size} POA
))}

Indicative residence concepts. Final unit mix, exact sizes and prices confirmed at private launch — early registrants seen first.

); } function Amenities() { const items = [ { ico: , name: "Sky pool", blurb: "26m horizon pool on the amenity deck." }, { ico: , name: "Hammam & spa", blurb: "Steam, sauna, treatment rooms, cold plunge." }, { ico: , name: "Performance gym", blurb: "Dual-storey gym with strength and cardio zones." }, { ico: ,name: "Padel court", blurb: "Single covered court on level four." }, { ico: ,name: "Podium garden", blurb: "Landscaped 4,000 sqm garden with shaded seating." }, { ico: , name: "Concierge", blurb: "24/7 multilingual concierge and valet." }, { ico: , name: "Residents' lounge", blurb: "Library, co-working booths, café service." }, { ico: , name: "Screening room", blurb: "Eighteen-seat private cinema, bookable nightly." }, ]; return (
04 — Amenities

An entire floor dedicated to the day-to-day.

{items.map((it, i) => (
{it.ico}
{it.name}

{it.blurb}

))}
); } function Gallery() { const shots = [ { src: "media/offplan-butterfly-towers.webp", cap: "Hero render · west elevation", cls: "g-a" }, { src: "media/insight-business-bay-canal.webp", cap: "Site · canal frontage", cls: "g-b" }, { src: "media/insight-downtown-towers-night.webp", cap: "Skyline context · Downtown at dusk", cls: "g-c" }, { src: "media/insight-dubai-marina-towers.webp", cap: "Marina · neighbour benchmark", cls: "g-d" }, { src: "media/insight-emirates-towers.webp", cap: "DIFC corridor", cls: "g-e" }, { src: "media/insight-dubai-metro-night.webp", cap: "Metro · 850m walk", cls: "g-f" }, ]; return ( ); } function Trust({ lang }) { return (
1986
Established
Founded by Linda Mahoney with a single desk in Jumeirah.
4
Offices
Business Bay HQ, Dubai Marina, Motor City and Abu Dhabi Al Raha Beach.
EN · AR
+ RU · ZH on launches
Investor-facing material extended to the four largest GCC buyer markets.
ORN 97
RERA registered
Brokerage of record · Dubai Land Department · verify before publishing.
); } function Footer({ lang }) { return ( ); } Object.assign(window, { Nav, Hero, TaglineStrip, Marquee, Editorial, Location, Residences, Amenities, Gallery, Trust, Footer });