// stickers-data.jsx — STICKER CATALOG
// ─────────────────────────────────────────────────────────────
// HOW TO ADD A STICKER:
//   1. Put the PDF into the  assets/  folder, e.g.  assets/sticker-01.pdf
//   2. Add one line to the list below.
//   3. The site builds the preview from the PDF automatically — no image needed.
//
//   id    : any unique short code
//   title : the number/label shown on the card ("01", "02", ...)
//   file  : path to the PDF inside assets/
//   isNew : true shows the green NEW badge (keep it on the latest few)
// ─────────────────────────────────────────────────────────────

window.STICKERS = [
  { id: "s-01", title: "01", file: "assets/sticker-green-1.pdf", isNew: true },
  { id: "s-02", title: "02", file: "assets/sticker-green-2.pdf", isNew: true },
  { id: "s-03", title: "03", file: "assets/sticker-green-p.pdf", isNew: true },
  { id: "s-04", title: "04", file: "assets/sticker-white-1.pdf", isNew: true },
  { id: "s-05", title: "05", file: "assets/sticker-white-2.pdf", isNew: true },
  { id: "s-06", title: "06", file: "assets/sticker-white-p.pdf", isNew: true },
];
