/* Collectibles.jsx — vertical infinite-loop product showcase Per brief: "images continuously move upward, each image transitions into the next, loop infinitely" */ const { useState: useCState, useEffect: useCEffect } = React; function Collectibles() { const merch = [ 'assets/merch1.jpg', 'assets/merch2.jpg', 'assets/merch3.jpg', 'assets/merch4.jpg', 'assets/merch5.jpg', 'assets/merch6.jpg', 'assets/merch7.jpg', 'assets/merch8.jpg', 'assets/merch9.jpg', 'assets/merch10.jpg', ]; const [active, setActive] = useCState(0); useCEffect(() => { const t = setInterval(() => { setActive(a => (a + 1) % merch.length); }, 1400); return () => clearInterval(t); }, [merch.length]); return (

Collectibles
from Sgt Pepe's
World

get yours now
{merch.map((src, i) => (
))}

The world of Sgt Pepe does not live only on screens.

From everyday gear to premium physical releases, the Airbase is where digital lore becomes something you can wear, hold, collect, and pass around.

Explore T shirts, socks, limited drops, the ABC book, and the deluxe comic book package telling the origin lore of Sgt Pepe.

); } window.Collectibles = Collectibles;