// HeroMagazine — redesigned hero // Awning + masthead + giant cover headline + floating product cut-outs. // Pulls visual cues from the actual WH G58 strawberry awning storefront. function HeroMagazine({ onShop, onPlayground, onAdd, headlineKey = "world" }) { // headline variants — each as a "cover composition" with inline image const headlines = { world: ( <>
A world of
magic &
imagination
for the next generation.
), curated: ( <>
Objects, chosen
the way
grown-ups choose art.
Five hundred and fifteen of them, at last count.
), playground: ( <>
A strawberry,
tucked between
the galleries.
A shop, a hidden playground, an Alserkal afternoon.
), }; return (
{/* Awning — same family as the actual storefront */}
{Array.from({ length: 36 }, (_, i) => { const w = 40, x = i * w; return ( ); })}
{/* Floating cut-outs sit behind the headline */}
N° 14
The Dutch Style 24″ · Adam Bike
N° 22
Train Nursery Light · Little Lights
N° 34
Strawberry Doorway · MIMIKI
N° 03
Pen Duo · OMY
{/* Subtle decorative motifs */}
{/* Masthead */}
StrawberryFields.ae Est. 2017
Volume 26 · Spring/Summer 2026
Alserkal Avenue · WH G58 · Dubai
{/* Giant headline */}

{headlines[headlineKey] || headlines.world}

{/* Foot — coverlines · cover star · live status */}
{/* Coverlines (left) */}
Also inside this issue
20 A new Hibou Home wallpaper — clouds, rainbows, a little quiet. Shop · p. 12
15 A doll house, hand-built in Beirut — the new Kids for Turath. In residence · p. 18
22 The Hidden Playground price card, in plain HTML at last. Playground · p. 24
48 Forty-eight design houses, under one strawberry awning. Brands · p. 32
{/* Live status block */}
Open today Tue — Sun · 09:30 — 19:30 · Alserkal WH G58
{/* Cover star (right) — featured product */}
Strawberry Doorway Theatre N° 34
MIMIKI · Pretend play
Strawberry Doorway Theatre
A red-and-white awning for any doorframe — half theatre, half boutique. Made to outlast the toddler years.
AED 325
folio one — of fifty-one
); } window.HeroMagazine = HeroMagazine;