/* BioReveal — Trust components for the Reveal page. * * MD reviewer card, compliance badges, money-back, testimonials, press strip. * Placeholder content marked clearly — swap in real assets when you have: * - signed MD partner * - LegitScript / NABP / 503B partner certs * - real customer testimonials with consent * - press features * * Search for [REPLACE_…] markers below to find what needs swapping. */ // ── [REPLACE_MD] ── swap with real MD partner ────────────────────────────── const MD_REVIEWER = { name: "Dr. Marcus Reyes, MD", title: "Medical Director — Telehealth Internal Medicine", npi: "NPI 15•••••81", // [REPLACE_NPI] — full NPI when partner signed state_licenses: "Licensed in 38 states · DEA registered", bio: "Board-certified internal medicine. 11 years in telehealth, 6 years specifically in regenerative & longevity protocols. Reviews every Super Star Peptides intake before any prescription is filled — average review time under 4 hours.", photo: "https://api.dicebear.com/9.x/notionists/svg?seed=marcus-reyes&backgroundColor=f5f0e8", // placeholder portrait — replace with real photo }; const MDReviewer = () => (
★ MD REVIEW
{MD_REVIEWER.name}

{MD_REVIEWER.name}

{MD_REVIEWER.title}
{MD_REVIEWER.npi} · {MD_REVIEWER.state_licenses}

{MD_REVIEWER.bio}

); // ── Compliance & money-back ──────────────────────────────────────────────── const ComplianceStrip = () => (
{[ { tag: "503B PARTNER", label: "FDA-registered outsourcing facility · cGMP", icon: "⚙" }, { tag: "LEGITSCRIPT", label: "Verified telehealth provider", icon: "✓" }, { tag: "NABP", label: "Compounding pharmacy accredited", icon: "◆" }, { tag: "30-DAY GUARANTEE", label: "Full refund if it's not for you", icon: "↺" }, ].map(b => (
{b.icon} {b.tag}
{b.label}
))}
ⓘ COMPLIANCE BADGES PENDING FINAL VERIFICATION — partner certifications updated as confirmations arrive.
); // ── Testimonials ── [REPLACE_TESTIMONIALS] ──────────────────────────────── const TESTIMONIALS = [ { name: "Adam K.", detail: "Age 42 · Bay Area · 14 weeks in", goal: "Energy + sleep", quote: "I'd been chasing energy for years. Three weeks in, I started waking before my alarm. By week 8 I dropped from two coffees a day to half of one. The AI quiz nailed what was going on — said my voice came back fatigued and recommended sermorelin + NAD+.", weeks: [ { wk: "WK 1", note: "Sleep deeper, dreams more vivid" }, { wk: "WK 4", note: "Morning energy stable without coffee crutch" }, { wk: "WK 12", note: "Resting HR dropped 8 bpm; recovery noticeably faster" }, ], }, { name: "Jasmin R.", detail: "Age 36 · Miami · 9 weeks in", goal: "Skin + recovery", quote: "Honestly skeptical going in. The analysis flagged my redness and texture — I assumed that's marketing. Six weeks of GHK-Cu and glutathione later, my skin is the calmest it's been since I was 27. The 'what to watch' section actually helped me track it.", weeks: [ { wk: "WK 2", note: "Less reactive after workouts" }, { wk: "WK 6", note: "Texture visibly smoother in photos" }, { wk: "WK 9", note: "Glow returned; less makeup needed" }, ], }, { name: "Trevor M.", detail: "Age 51 · Phoenix · 16 weeks in", goal: "Recovery + longevity", quote: "The MD review caught that I had a cancer history I hadn't thought to flag. They swapped GH-axis peptides for a recovery + antioxidant stack. Recovery from CrossFit went from 'wrecked for 3 days' to 'normal next morning' — and I felt heard, not upsold.", weeks: [ { wk: "WK 1", note: "Soreness halved" }, { wk: "WK 6", note: "Sleeping through the night" }, { wk: "WK 16", note: "Lifting heavier than 5 years ago" }, ], }, ]; const Testimonials = () => (
★ FROM PEOPLE WHO RAN THE PROTOCOL

What a real 12 weeks looks like.

Quotes verified by patient consent · individual results vary · not medical claims.

{TESTIMONIALS.map((t, i) => (
{t.name[0]}
{t.name}
{t.detail}
GOAL · {t.goal}

"{t.quote}"

{t.weeks.map(w => (
{w.wk} {w.note}
))}
))}
ⓘ TESTIMONIALS SHOWN ARE COMPOSITE PREVIEWS — replace with real consented patient stories before launch.
); // ── Press strip ── [REPLACE_PRESS] ──────────────────────────────────────── const PressStrip = () => (
AS REFERENCED IN
{["MEN'S HEALTH", "WIRED", "OUTSIDE", "HUBERMAN LAB", "FAST COMPANY"].map(p => ( {p} ))}
ⓘ PLACEHOLDER LOGOS — swap with real press features as they land.
); window.BR_TRUST = { MDReviewer, ComplianceStrip, Testimonials, PressStrip };