/* People.jsx — centered text block + bottom-edge horizontal carousel of gallery1–27 */ function People() { const all = Array.from({ length: 27 }).map((_, i) => `assets/gallery${i + 1}.jpg`); const doubled = [...all, ...all]; return (

The People

Sgt Pepe World exists because people show up.

It started with one person, Arsonic, showing up consistently over time. Not to build a brand, but to support artists, ideas, and culture.

It continues through communities like 6529.io, people who keep showing up again and again, without needing permission or recognition.

And those who own a full set deserve recognition: a custom Meme Card created by Arsonic.

The family keeps growing with time.

explore the 1/1 gallery
{doubled.map((src, i) => (
))}
); } window.People = People;