/* eslint-disable */ // Shared components — Wordmark, Nav, Footer, FloatActions, helpers. const PB = window.PB_DATA; function Wordmark({ size = 'md', mono = true }) { const sizes = { sm: 16, md: 19, lg: 28 }; return ( {mono ? ( ) : null} {'PLATINUM '}black DIFC · Ladies Salon ); } const NAV_LINKS = [ { href: '#/', label: 'Home', key: 'home' }, { href: '#/services', label: 'Services', key: 'services' }, { href: '#/memberships', label: 'Memberships', key: 'memberships' }, { href: '#/about', label: 'About', key: 'about' }, { href: '#/reviews', label: 'Reviews', key: 'reviews' }, { href: '#/contact', label: 'Contact', key: 'contact' }, ]; function TopNav({ route }) { return (
Emirates Platinum offer — 30% off, to 31 May 2026 Rated 4.9 on Fresha · 249 reviews
4.9 · Fresha Book Now
); } function Footer() { const lblStyle = { fontSize: 11, color: 'rgba(246,244,239,0.5)', letterSpacing: '0.14em', textTransform: 'uppercase' }; return ( ); } function FloatActions() { return (
); } function Eyebrow({ children }) { return
{children}
; } function formatPrice(s) { if (s.complimentary) return { label: 'Complimentary', from: false }; if (s.consult) return { label: 'on consultation', consult: true }; if (typeof s.price === 'number') { return { label: 'AED ' + s.price.toLocaleString('en-US'), from: !!s.from, }; } return { label: '—' }; } Object.assign(window, { Wordmark, TopNav, Footer, FloatActions, Eyebrow, formatPrice, NAV_LINKS, });