// Part 2 — Hidden Playground, Editorial, Values, Brands, Gifting, Visit, Happenings, Footer, Cart, App root const { useState: useState2, useEffect: useEffect2, useMemo: useMemo2, useRef: useRef2 } = React; const aedFmt = window.__sfApp1.aed; // ---------- Editorial split — "Why we exist" ---------- function Editorial() { return (
Why we exist

We believe a child's room is their first museum, and every wooden xylophone, well-bound book and small soft thing should be chosen the way grown-ups choose art.

Strawberry Fields
Alserkal Avenue, since 2017
Beirut Doll House by Kids for Turath
In residence
Kids for Turath
Beirut, Lebanon · heirloom dollhouses
Story →
); } // ---------- Hidden Playground ---------- function HiddenPlayground() { const [duration, setDuration] = useState2("60"); const [type, setType] = useState2("stayplay"); const totals = useMemo2(() => { const map = {}; HPG_RATES.rows.forEach(r => { const cell = duration === "30" ? r.thirty : duration === "60" ? r.sixty : r.extra; map[r.key] = cell; }); return map; }, [duration]); const totalVal = totals[type]; const totalLabel = typeof totalVal === "number" ? `AED ${totalVal}` : (totalVal || "—"); return (
The Hidden Playground

An imagined world
tucked inside the shop.

A little doorway, a strawberry awning, and a soft floor under it all. For little ones aged one to six and the grown-ups they bring. The first ten minutes are on us, every time.

Price list

First 10 minutes on us {HPG_RATES.rows.map(r => ( {[r.thirty, r.sixty, r.extra].map((v, i) => ( ))} ))}
30 mins 60 mins Extra
{r.label} {r.sub} {typeof v === "number" ? `${v} AED` : v}
For
{HPG_RATES.rows.map(r => ( ))}
Stay
{totalLabel === "Free" ? Free : totalLabel}

Supervision rules, capacity and what "Extra" includes are confirmed at the door — rates above are verified from the official price card.

{/* Illustrated panel — same family as the official rate card art */}
The Hidden Playground
Ages
1 — 6
Open
Tue – Sun
09:30 – 19:30
); } // ---------- Values ---------- function Values() { const items = [ { n: "01", t: "Sustainable", b: "FSC wood, OEKO-TEX cottons, refill-friendly packaging. Heirloom over disposable, always." }, { n: "02", t: "Safe by default", b: "Age-appropriate, choke-tested, water-based finishes. We read the certificates so you don't have to." }, { n: "03", t: "Design-led", b: "Forty-eight independent design houses, hand-picked for craft, restraint and a sense of wonder." }, { n: "04", t: "Educational", b: "Open-ended, screen-light, story-rich. Toys that wait for the child rather than the other way around." }, ]; return (
Our standards

What we look for, on your behalf.

Read our buying ethics →
{items.map(v => (
{v.n}
{v.t}
{v.b}
))}
); } // ---------- Brands ---------- function Brands() { return (
A constellation

Forty-eight design houses,
under one strawberry awning.

All brands →
{BRANDS.map(b => (
{b.count} {b.name}
))}
); } // ---------- Gifting block ---------- function Gifting({ onAdd }) { return (
Gifting & celebration

A gift that
earns its ribbon.

Newborn gifts, first-birthday hampers, registry pieces and e-gift cards from AED 157.50. We hand-wrap in the shop and our concierge can put together a curation for any age, budget or aesthetic.

{[ { src: "media/product-16-gift-card.webp", bg: "#FBF4EE", label: "e-Gift Card", from: "from AED 157.50" }, { src: "media/product-35-baby-comforter.webp", bg: "#F4E6D9", label: "Mrs. Rabbit Comforter", from: "AED 109" }, { src: "media/product-30-wall-art-baby.webp", bg: "#FBF4EE", label: "Baby Page Wall Art", from: "AED 150" }, { src: "media/product-29-soap-craft-kit.webp", bg: "#F1D9DD", label: "Croco Soap Maker", from: "AED 81" }, ].map((g, i) => (
{g.label}
{g.from}
))}
); } // ---------- Visit Alserkal ---------- function Visit() { return (
Find us

Come for the shop,
stay for the playground.

Alserkal Avenue, WH G58, Dubai

Tucked between the galleries on the north end of Alserkal Avenue. Park anywhere along the lane — the strawberry awning is hard to miss.

Open
Tue — Sun
09:30 – 19:30 · closed Mondays
Call
+971 58 554 4941
Voice & general enquiries
Email
info@strawberryfields.ae
Follow
@strawberryfields.ae
{/* Stylised map — original; not a real Google embed (per pitfall #7) */} {/* Road grid loosely echoing Alserkal Ave */} {/* warehouses */} {[[40,40,80,60],[140,40,60,60],[300,40,70,60],[40,220,60,60],[170,220,70,80],[300,250,80,40],[60,340,80,50]].map((r,i) => ( ))} WH 60 WH 45 G58
Strawberry Fields · WH G58
); } // ---------- Happenings ---------- function Happenings() { return (
Happenings

What's on at the shop.

Full calendar →
{HAPPENINGS.map((h, i) => (
{h.day}
{h.mon} 2026
{h.title}
{h.meta}
{h.cta}
))}
); } // ---------- Footer ---------- function Footer() { return ( ); } // ---------- Cart drawer ---------- function CartDrawer({ open, items, onClose, onChange, onRemove }) { const subtotal = items.reduce((s, it) => s + parseFloat(it.price) * it.qty, 0); return ( <>
); } // ---------- Toast ---------- function Toast({ msg }) { return (
{msg}
); } window.__sfApp2 = { Editorial, HiddenPlayground, Values, Brands, Gifting, Visit, Happenings, Footer, CartDrawer, Toast };