// COLLECTIONS HUB function CollectionsPage({ arabicAccent }) { const { navigate } = useRouter(); const [filter, setFilter] = useState('all'); return (
Collections

Seven motifs, one caravan.

Each line of Gafla is a single Arabian idea worked into wearable form — the sea, the heart, the coin, the lantern, the chain, the perfume wand, the octagon. Begin anywhere.

{[ { id: 'all', label: 'All Lines' }, { id: 'heritage', label: 'Heritage' }, { id: 'capsule', label: 'Capsules' }, { id: 'new', label: 'Newest' }, ].map((f) => ( ))}
{COLLECTIONS.map((c, i) => ( navigate('collection', { id: c.id })}> {c.name}
N° 0{i + 1}
{c.arabic}
{c.name}
{c.tagline} {c.count} pieces · {c.range}
))}
); } Object.assign(window, { CollectionsPage });