// Agora Editorial — magazine-style index of features and stories. const Editorial = ({ setRoute }) => { const palettes = window.AG_DATA.palettes; const features = [ { eyebrow:'The Hermès Index · Spring 26', title:'What a Birkin actually costs in 2026.', body:'The sticker price hides three other numbers. We compared 1,204 sales across four cities to find the real cost — and the real margin.', meta:'14 min · Maya Antinora · 11 April 2026', palette: palettes.cocoa }, { eyebrow:'Sourcing', title:'A week in Aoyama.', body:'Three days, twenty-two appointments, four bags.', meta:'6 min · Yuki Tanabe · 4 April 2026', palette: palettes.chalk }, { eyebrow:'Authentication', title:'How fake gets fakier.', body:'A walk-through of the seven points that finally caught the new generation of super-fakes.', meta:'12 min · Lena Vossen · 27 March 2026', palette: palettes.ink }, { eyebrow:'Vintage', title:'The Comme des Garçons archive boom.', body:'Why 1998 is suddenly worth four times what 1995 is.', meta:'9 min · M. Reuter · 18 March 2026', palette: palettes.olive }, { eyebrow:'Logistics', title:'DDP — and why you pay €0 at the door.', body:'How the customs lane changed for resale luxury between 2023 and now.', meta:'4 min · The Editors · 1 March 2026', palette: palettes.sand }, { eyebrow:'Studio visit', title:'Inside Rive Droite, Paris.', body:'Maya Antinora has been sourcing Hermès for 15 years. The atelier is on the third floor; the bell still rings.', meta:'10 min · Editorial · 22 February 2026', palette: palettes.burgundy }, ]; return (
Editorial · Volume 14 · Spring 26

Reading list.

Long-form on the pieces, the people, and the logistics. Updated weekly. No sponsored placements.

{/* Big lead feature */}
{features[0].eyebrow}

{features[0].title}

{features[0].body}

{features[0].meta}

More stories

{['All','Sourcing','Authentication','Vintage','Studio visits','Logistics'].map((c, i) => ( {c} ))}
{features.slice(1).map((f, i) => (
{f.eyebrow}

{f.title}

{f.body}

{f.meta}
))}
{/* Newsletter */}
The Agora dispatch

Sundays only.

One story, one piece, one number. 32k readers. Unsubscribe in one click.

); }; window.Editorial = Editorial;