/* /peptides/ — Library index page. Lists every peptide with rich card design. */ const PEPTIDE_LIST = Object.values(window.PEPTIDE_DB); function LibraryIndex() { const Glyph = window.PEPTIDE_GLYPH; const ACCENTS = window.PEPTIDE_ACCENTS; return (
{/* HERO */}
★ THE LIBRARY

Every peptide,
finally explained.

Plain-English deep-dives on every compound we work with. What it does, who it's for, the dose ladder, the timeline, the evidence — no jargon, no marketing, no bro-science.

{PEPTIDE_LIST.slice(0, 6).map((p, i) => (
))}
{/* CARDS */}
★ ALL {PEPTIDE_LIST.length} COMPOUNDS
Tap any to read deeply
{PEPTIDE_LIST.map((p, i) => { const accent = ACCENTS[p.slug] || "#6b6b6b"; return (
{String(i + 1).padStart(2, "0")}
{p.class_label}

{p.name}

{p.tagline}

{p.one_liner}

${p.price}/mo READ →
); })}
{/* FINAL CTA */}
★ NOT SURE WHICH IS RIGHT?

Let our 4-min BioScan match you.

We read your goals, lifestyle, and (optionally) your face + voice + heart rate. Then your personal peptide stack — explained in plain English. Free. MD-reviewed before anything ships.

Run the BioScan →
Compounded peptides are not FDA-approved for these indications. MD-reviewed before fulfillment.
); } ReactDOM.createRoot(document.getElementById("root")).render();