// Homepage — Superstar Peptides const PEPTIDES = [ { code: "GHK-Cu", category: "Hair & Skin", color: "#E8C4B8", tag: "Collagen + follicles", desc: "Tells your skin and scalp to act 25 again." }, { code: "BPC-157", category: "Muscle", color: "#E8B5A8", tag: "Repair", desc: "Speeds healing of tendons, ligaments, and gut lining." }, { code: "Tirzepatide", category: "Fat Loss", color: "#A0B098", tag: "Appetite", desc: "Quiets cravings. Steadies blood sugar." }, { code: "Sermorelin", category: "Muscle", color: "#D9A47C", tag: "Growth hormone", desc: "Tells your body to release more growth hormone — naturally." }, { code: "Semax", category: "Mind", color: "#A8B4C4", tag: "Focus", desc: "Brain fertilizer. Sharper focus, better memory." }, { code: "PT-141", category: "Libido", color: "#9A4A4A", tag: "Desire", desc: "Works in the brain, not the bloodstream." }, ]; const CATEGORIES = [ { id: "hair", name: "For Hair", peptides: "GHK-Cu · PTD-DBM", icon: "❋", accent: "#FF8FB1", desc: "Wake up sleeping follicles. Thicker, fuller hair." }, { id: "skin", name: "For Skin", peptides: "GHK-Cu · Epitalon · BPC-157", icon: "✿", accent: "#E8B5A8", desc: "Make collagen again like you did at 25." }, { id: "muscle", name: "For Muscle", peptides: "BPC-157 · TB-500 · Sermorelin · Ipamorelin",icon: "◆", accent: "#FF4A1C", desc: "Train hard. Recover fast. Heal old injuries." }, { id: "fatloss", name: "For Fat Loss", peptides: "Semaglutide · Tirzepatide · AOD-9604", icon: "⚖", accent: "#C68B7C", desc: "Quiet the cravings. Move the scale." }, { id: "mind", name: "For Mind", peptides: "Semax · Selank · Dihexa", icon: "✦", accent: "#7C5BFF", desc: "Sharper focus. Calmer mood. Clearer thinking." }, { id: "sleep", name: "For Sleep", peptides: "DSIP · Epitalon", icon: "☾", accent: "#6FD8FF", desc: "Deeper sleep. Wake up actually rested." }, { id: "libido", name: "For Libido", peptides: "PT-141", icon: "♥", accent: "#FF4A1C", desc: "Works in the brain — not the bloodstream." }, ]; const PROTOCOLS = [ { slug: "lose-weight", name: "Lose Weight", duration: "Monthly", goal: "Drop fat. Keep muscle.", color: "#E8B5A8", peptides: ["Sermorelin", "B12 / MIC", "NAD+"], price: "$329/mo", benefit: "Quiets cravings, lifts your energy floor, and keeps your muscle while the scale moves." }, { slug: "build-muscle", name: "Build Muscle", duration: "Monthly", goal: "Train hard. Recover fast.", color: "#FF4A1C", peptides: ["Sermorelin", "Ipamorelin", "BPC-157"], price: "$549/mo", benefit: "Train without breaking. Faster recovery, deeper sleep, lean mass that holds." }, { slug: "grow-your-hair", name: "Grow Your Hair", duration: "Monthly", goal: "Thicker. Fuller. Yours.", color: "#E8C76B", peptides: ["GHK-Cu", "Glutathione"], price: "$249/mo", benefit: "Wakes sleeping follicles. Better scalp blood flow. Visible density by week 12." }, { slug: "fix-your-skin", name: "Fix Your Skin", duration: "Monthly", goal: "Glow from inside out.", color: "#E8C4B8", peptides: ["GHK-Cu", "Glutathione", "NAD+"], price: "$329/mo", benefit: "Calms redness, evens tone, smooths texture. Real change by week 6." }, { slug: "think-smarter", name: "Think Smarter", duration: "Monthly", goal: "Sharp. Calm. Locked in.", color: "#7C5BFF", peptides: ["Selank", "NAD+", "Sermorelin"], price: "$309/mo", benefit: "Clear focus without the buzz. Better mood. Sharper memory." }, { slug: "sleep-deeper", name: "Sleep Deeper", duration: "Monthly", goal: "Wake up rested.", color: "#6FD8FF", peptides: ["Sermorelin", "DSIP", "Ipamorelin"], price: "$429/mo", benefit: "Real sleep architecture. Wake before your alarm. Stop needing the second coffee." }, ]; /* ============ HERO ============ */ const Hero = () => (
★ THE FUTURE OF SUPPLEMENTS RX · U.S. PHARMACIES

Become a
Super{" "} Star.

Peptides — finally explained.

You took vitamins. You tried nootropics. Peptides are the next layer — the signaling molecules your body actually uses to heal, sleep, recover, and become the version of yourself you've been chasing. AI-matched in 4 min. MD-prescribed. Shipped from a U.S. pharmacy.

Find my peptide → Learn the basics
); const Stat = ({ value, label }) => (
{value}
{label}
); const HERO_PRODUCTS = [ { code: "GHK-Cu", fullName: "Hair + skin", category: "Hair · Skin", shortLabel: "GHK-Cu", stats: { dose: "50mg", purity: "99.6%", price: "$129" } }, { code: "BPC-157", fullName: "Repair + recovery", category: "Muscle", shortLabel: "BPC-1...", stats: { dose: "5mg", purity: "99.6%", price: "$89" } }, { code: "Tirzepatide", fullName: "Quiets your appetite", category: "Fat Loss", shortLabel: "Tirzep...", stats: { dose: "5mg", purity: "99.5%", price: "$449" } }, { code: "Semax", fullName: "Focus + memory", category: "Mind", shortLabel: "Semax", stats: { dose: "30mg", purity: "99.7%", price: "$179" } }, ]; const HeroChip = ({ children }) => ( {children} ); const HeroStat = ({ value, label }) => (
{value}
{label}
); const HeroVisual = () => { const [active, setActive] = React.useState(0); const p = HERO_PRODUCTS[active]; const pal = getPalette(p.code); return (
{/* Main showcase card */}
● BATCH 26-A15 ● 250 SOLD TODAY

{p.code}

{p.fullName}
View →
{/* Thumbnail strip */}
{HERO_PRODUCTS.map((hp, i) => { const tpal = getPalette(hp.code); const isActive = i === active; return ( ); })}
); }; const Sparkline = () => ( ); /* ============ MARQUEE ============ */ const Marquee = () => { const items = ["BPC-157", "★", "Sermorelin", "★", "NAD+", "★", "Tirzepatide", "★", "Selank", "★", "TB-500", "★", "GHK-Cu", "★", "Semaglutide", "★", "Ipamorelin", "★"]; const row = ( {items.map((it, i) => it === "★" ? : {it} )} ); return (
{row}{row}{row}
); }; /* ============ CATEGORIES (= browse by goal = protocols) ============ */ const GOAL_TILES = [ { slug: "lose-weight", name: "Lose weight", icon: "▼", desc: "Drop fat. Keep muscle. Quiet the cravings.", accent: "#E8B5A8", peptides: "Sermorelin · B12/MIC · NAD+" }, { slug: "build-muscle", name: "Build muscle", icon: "◆", desc: "Train hard. Recover fast. Lean mass that holds.", accent: "#FF4A1C", peptides: "Sermorelin · Ipamorelin · BPC-157" }, { slug: "grow-your-hair", name: "Grow your hair", icon: "❋", desc: "Wake sleeping follicles. Thicker, fuller hair.", accent: "#E8C76B", peptides: "GHK-Cu · Glutathione" }, { slug: "fix-your-skin", name: "Fix your skin", icon: "✿", desc: "Calm redness. Even tone. Glow from inside out.", accent: "#E8C4B8", peptides: "GHK-Cu · Glutathione · NAD+" }, { slug: "think-smarter", name: "Think smarter", icon: "▲", desc: "Sharp focus. Calm mood. Locked in.", accent: "#7C5BFF", peptides: "Selank · NAD+ · Sermorelin" }, { slug: "sleep-deeper", name: "Sleep deeper", icon: "☾", desc: "Wake up rested. Stop needing the second coffee.", accent: "#6FD8FF", peptides: "Sermorelin · DSIP · Ipamorelin" }, ]; const Categories = () => (
★ BROWSE BY GOAL · 6 PROTOCOLS

What do you
want fixed?

Each goal has a pre-built protocol. Tap any to read the long version — what it is, what each peptide does for THAT goal, and what to expect.

{GOAL_TILES.map((c, i) => )}
); const CategoryCard = ({ cat, featured }) => ( { e.currentTarget.style.transform = "translateY(-4px)"; e.currentTarget.style.boxShadow = "var(--shadow-lg)"; }} onMouseLeave={e => { e.currentTarget.style.transform = "translateY(0)"; e.currentTarget.style.boxShadow = "none"; }} >
{cat.icon}

{cat.name}

{cat.desc}

The stack
{cat.peptides}
); /* ============ STACK BUILDER CTA ============ */ const StackCTA = () => (
{/* Decorative grid */}
90-SECOND MATCH

Not sure
where to
start?

Tell us your goal in plain English. We match you with the peptide (or two) that's been studied for it — with simple instructions, realistic timelines, and a real clinician's review before anything ships.

); const Step = ({ n, label }) => (
{n}
{label}
); const StackPreview = () => (
YOUR STACK · BUILT FOR M.K.
Recomp Protocol
94% match
{[ { name: "Semaglutide", dose: "0.5mg / wk", color: "#C68B7C", purpose: "Appetite + glucose" }, { name: "BPC-157", dose: "250mcg / 2x day", color: "#E8B5A8", purpose: "Recovery" }, { name: "Sermorelin", dose: "200mcg / nightly", color: "#FF4A1C", purpose: "GH + sleep" }, ].map(p => (
{p.name.slice(0, 2).toUpperCase()}
{p.name}
{p.purpose}
{p.dose}
))}
12 weeks · ships monthly
$489/mo
); /* ============ PROTOCOLS ============ */ const Protocols = () => (
★ BROWSE BY GOAL

Pick what
you want fixed.

Six pre-built protocols, one for each goal. Tap any to read the long version — what's in it, what each peptide does, and what to expect week-by-week.

{PROTOCOLS.map(p => )}
); const ProtocolCard = ({ p }) => (
★ {p.duration} RX

{p.name}

{p.benefit}

STACK
{p.peptides.map(pep => ( {pep} ))}
{p.price}
Read protocol →
{(() => { const pal = getPalette(p.peptides[0]); return ; })()}
); /* ============ EDUCATION / SCIENCE ============ */ const Science = () => (
★ HOW IT'S MADE

Real medicine.
Real pharmacies.
No gray market.

Every peptide on this site is compounded by a U.S. licensed pharmacy and prescribed by a real clinician — only after you talk to one. Every batch is tested for what's in it, how pure it is, and that it's sterile. You get the certificate.

{[ ["Triple-tested", "What's in it, how pure, and sterile — every batch."], ["U.S. licensed pharmacies", "503A registered. Same place your prescriptions come from."], ["A real clinician reviews it", "No bots. A licensed MD signs off before anything ships."], ["You see the certificate", "Lab results for your batch, in your inbox."], ].map(([t, d]) => (
{t}
{d}
))}
); const MechanismDiagram = () => (
WHAT GHK-Cu DOES
{/* Concentric rings */} {[180, 140, 100, 60].map((r, i) => ( ))} {/* Center */} GHK copper {/* Nodes */} {[ { x: 200, y: 60, label: "COLLAGEN", sub: "Skin firms up" }, { x: 340, y: 200, label: "FOLLICLES", sub: "Hair gets thicker" }, { x: 200, y: 340, label: "REDNESS", sub: "Inflammation drops" }, { x: 60, y: 200, label: "REPAIR", sub: "Cells act younger" }, ].map((n, i) => ( {n.label} {n.sub} ))}
You'll notice
4–8 wks
Use it
Daily
Safety
40+ yrs
); /* ============ STEP ILLUSTRATIONS ============ */ const QuizArt = ({ dark }) => ( ); const HubArt = () => { const center = { x: 100, y: 65 }; const nodes = [ { x: 40, y: 30, label: "BPC-157" }, { x: 160, y: 30, label: "TB-500" }, { x: 30, y: 100, label: "NAD+" }, { x: 170, y: 100, label: "GHK-Cu" }, ]; return ( ); }; const RxArt = () => ( ); const ShipArt = () => ( ); /* ============ TESTIMONIALS / HOW IT WORKS ============ */ const HowItWorks = () => { const steps = [ { n: "01", t: "Tell us your goal", d: "90 seconds. No medical jargon.", art: }, { n: "02", t: "Get your match", d: "We show you the peptide and why it fits.", art: }, { n: "03", t: "A clinician reviews", d: "A real MD signs off after a quick consult.", art: }, { n: "04", t: "It ships to you", d: "48-hour express from a licensed U.S. pharmacy.", art: }, ]; return (
★ HOW IT WORKS

Four steps.
No clinic visit.

{steps.map((s, i) => { const dark = i === 0; return (
{s.n} / 04
{s.art}

{s.t}

{s.d}

); })}
); }; /* ============ FINAL CTA ============ */ const FinalCTA = () => (

Pick one
thing to
fix first.

Hair. Skin. Muscle. Fat loss. Mood. Pick the goal that's loudest right now — we'll show you the peptide that's been studied for it.

{/* Giant offset star */}
); /* ============ APP ============ */ const App = () => ( <>