Walk in prepared. Walk out understood.>} lead="One tap turns weeks of doses, weight, side effects, protein, hydration, sleep, and refill status into a clean PDF your doctor or telehealth provider can read in seconds." />
{["Dose history with sites, timing & adherence", "Weight trend and body measurements", "Side-effect summary your provider can act on", "Refill status so nothing lapses"].map(t => (
);
}
/* ---- Privacy manifesto ---- */
function Privacy() {
const pillars = [
["lock", "No ad tracking", "Zero third-party trackers. We don't know — and don't want to know — who you are."],
["shield", "No selling health data", "Your data is never sold, rented, or shared for advertising. Ever."],
["doc", "Export anytime", "Your full history, yours to take. PDF or open data, one tap away."],
["minus", "Delete anytime", "One button erases everything, on every device. No retention, no questions."],
];
return (
Privacy-first, by architecture
Your health data stays yours. Stored on your device, synced through Apple's private iCloud — never our servers.
Clinics & providers — per-seat plans available. Talk to us →
);
}
/* ---- FAQ ---- */
function FaqItem({ q, a, open, onToggle }) {
const ref = useRef(null);
const [h, setH] = useState(0);
useEffect(() => { if (ref.current) setH(open ? ref.current.scrollHeight : 0); }, [open]);
return (
{a}
);
}
function Faq() {
const [open, setOpen] = useState(window.__printMode ? "all" : 0);
const items = [
["Is Metabole medical advice?", "No. Metabole is a tracking and organization tool. Pep Bot and our Research Library are educational only, and the compound estimator shows population-average estimates — not your actual blood levels. Always follow your provider's instructions."],
["Does it work with compounded medications?", "Yes — that's a core focus. We don't tell you what to take; we help you record exactly what your provider prescribed: concentration, syringe units, label photos, and confirmation prompts to reduce confusion and dosing errors."],
["Which medications and peptides are supported?", "Ozempic, Wegovy, Mounjaro, Zepbound, compounded semaglutide and tirzepatide, oral GLP-1s, and 75+ peptide compound profiles. If your provider prescribed it, you can log it."],
["Where is my data stored?", "On your device, synced across your devices through Apple's private iCloud. We never see it, never sell it, and you can export or delete everything at any time."],
["What about plateaus and maintenance?", "Most apps only care about the scale going down. Metabole helps you handle plateaus, protect muscle by keeping protein up, manage side effects, and prepare for long-term maintenance or discontinuation conversations with your provider."],
["Can I cancel anytime?", "Yes. Premium is month-to-month or annual, cancel whenever. Your Free account — and all your data — stays."],
];
return (