/* home.jsx — landing page */ const Home = ({onConsult, setRoute, setProductId, tweaks}) => { return (
{tweaks.showTestimonial && } {tweaks.showTrust && } {tweaks.showInstagram && } ); }; // =========================================================== // Hero // =========================================================== const Hero = ({onConsult, setRoute}) => (
Old Gold Souk · Deira · Since 1998

Look regal,
feel royal.

A family jewellery house in Dubai's Gold Souk. Diamond & coloured-gemstone pieces, bridal, and one-of-a-kind bespoke — crafted in our own atelier in Bangkok, finished by hand in Deira.

Palaces Jewellery — Aureveris ring on hand
The Aureveris · 18k rose gold · AED 48,399
); const HeroStat = ({label, value, caption}) => (
{label}
{value}
{caption}
); // =========================================================== // Marquee // =========================================================== const Marquee = () => { const items = [ 'Bridal & engagement consultations', 'Bespoke 3D-CAD design', 'Coloured gemstones — sapphire, emerald, ruby', 'Hand-finished in Deira', 'Worldwide shipping', 'Resizing · engraving · appraisal', ]; const track = [...items, ...items]; return (
{track.map((t, i) => ( {t} ))}
); }; // =========================================================== // Signatures // =========================================================== const SignaturesSection = ({setRoute, setProductId}) => { const features = ['aureveris', 'velantrix', 'seraphelis', 'imperial-eagle', 'celeste', 'magnolia'].map(byId); const open = (id) => { setProductId(id); setRoute('product'); window.scrollTo(0, 0); }; return (
The house's own hand.} sub="A small, named family of pieces designed in-house and not made for anyone else. Most are made to order — allow four to six weeks." action={} />
{features.map((p) => )}
); }; // =========================================================== // Collections // =========================================================== const CollectionsSection = ({setRoute}) => { const tiles = [ {key: 'bridal', name: 'Bridal & Engagement', desc: 'From a quiet solitaire to a piece built around your stone.', img: 'assets/collection-tile-1.webp', count: 64, range: 'AED 9,299 — 49,299'}, {key: 'diamond', name: 'Diamond Jewellery', desc: 'White-on-white, pavé and brilliants — for the everyday and the never-everyday.', img: 'assets/collection-tile-2.webp', count: 112, range: 'AED 11,399 — 89,000'}, {key: 'gemstone', name: 'Coloured Gemstones', desc: 'Sapphire, emerald, ruby and the rarer-than-most blue spinel.', img: 'assets/collection-tile-3.webp', count: 78, range: 'AED 12,729 — 269,899'}, {key: 'signature', name: 'Signature — Eagle of Noor', desc: 'Our heraldic motif, drawn in gold and brilliant pavé.', img: 'assets/collection-tile-4.webp', count: 9, range: 'AED 14,189 — 30,499'}, ]; return (
{tiles.map((t) => (
{t.name}
{t.count} pieces · {t.range}

{t.name}

{t.desc}

))}
); }; // =========================================================== // Heritage strip with RTL toggle demonstration // =========================================================== const HeritageSection = () => { const [locale, setLocale] = React.useState('en'); const isRtl = locale === 'ar'; return (
Atelier
The Atelier

"Cast in Bangkok. Finished by hand in Deira."

Heritage {!isRtl ? (

A family house in the Old Gold Souk.

Palaces opened on the Deira side of Dubai Creek in 1998. Two showrooms, two gates of the Old Souk, one family at the door. Pieces are designed at the bench, drawn in 3D, cast in our own atelier in Bangkok, and finished by hand back in Deira.

) : (

دار عائلية في سوق الذهب القديم

افتُتح "بالاسز" في ديرة على ضفاف خور دبي عام 1998. صالتا عرض، بوّابتان من السوق القديم، وعائلة واحدة عند المدخل. تُصمَّم القطع على طاولة العمل، تُرسم بصيغة ثلاثية الأبعاد، وتُسبَك في ورشتنا الخاصة في بانكوك، ثم تُنجَز يدويًا في ديرة.

)}
); }; const TimelinePoint = ({year, label}) => (
{year}
{label}
); // =========================================================== // Bespoke teaser // =========================================================== const BespokeTeaser = ({onConsult, setRoute}) => (
Bespoke

Designed for one wrist,
one finger, one story.

Bring us a sketch on a napkin, an heirloom that's stopped being worn, or a stone you've kept in a drawer for ten years. A five-step process — and somewhere between sapphire and setting, the piece becomes yours.

{[ {n: '01', t: 'Private Assessment', d: 'Brief, references, budget band.'}, {n: '02', t: 'Stone Curation', d: 'Diamonds & coloured stones, side-by-side.'}, {n: '03', t: '3D-CAD Design', d: 'Three renders, refined to one.'}, {n: '04', t: 'Atelier · 4–6 weeks', d: 'Wax, cast, set, finish, hallmark.'}, ].map((s) => (
{s.n}

{s.t}

{s.d}

))}
); // =========================================================== // Testimonial // =========================================================== const Testimonial = () => (
A guest, in their words
"Beautiful range of designs and very fair prices. They walked us through every certificate on a 2-carat emerald-cut diamond — and then took an extra hour to design the band around it."
Mohammed B. · 17 November 2025 · Tripadvisor
); // =========================================================== // Trust strip // =========================================================== const TrustStrip = () => (
{[ {t: 'Own atelier', s: 'Cast & set in-house — Bangkok'}, {t: 'Certified stones', s: 'Diamond & gemstone certificates with every piece'}, {t: 'Worldwide shipping', s: '7–16 days, insured, door-to-door'}, {t: 'Lifetime care', s: 'Cleaning, repair, resize & re-polish'}, ].map((i) => (
{i.t}
{i.s}
))}
); // =========================================================== // Visit // =========================================================== const VisitSection = () => (
{[ { tag: 'Gate 3', name: 'Dalmook Building', shop: 'Shop #5', phone: '+971 4 591 2373', tel: 'tel:+97145912373', map: 'https://www.google.com/maps?q=Palaces%20Jewellery%20Dalmook%20Building%20Gate%203%20Old%20Gold%20Souk%20Deira%20Dubai&z=16&output=embed', directions: 'https://www.google.com/maps/search/?api=1&query=Palaces%20Jewellery%20Dalmook%20Building%20Gate%203%20Old%20Gold%20Souk%20Deira%20Dubai', }, { tag: 'Gate 1', name: 'Mohammed Al Ghurair Building', shop: 'Shop #4 & 5', phone: '+971 4 225 5972', tel: 'tel:+97142255972', map: 'https://www.google.com/maps?q=Palaces%20Jewellery%20Mohammed%20Al%20Ghurair%20Building%20Gate%201%20Old%20Gold%20Souk%20Deira%20Dubai&z=16&output=embed', directions: 'https://www.google.com/maps/search/?api=1&query=Palaces%20Jewellery%20Mohammed%20Al%20Ghurair%20Building%20Gate%201%20Old%20Gold%20Souk%20Deira%20Dubai', }, ].map((s) => (
{s.tag}

{s.name}

{s.shop} · Old Gold Souk · Deira · Dubai