/* PeptideKit landing — sections */ const { useEffect, useState } = React; function Navbar() { const [scrolled, setScrolled] = useState(false); useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 20); onScroll(); window.addEventListener('scroll', onScroll); return () => window.removeEventListener('scroll', onScroll); }, []); return ( ); } const navLink = { fontSize: 14, color: 'var(--ink-70)', fontWeight: 500, transition: 'color 200ms' }; function Hero() { return (
{/* Hero radial glow */}
iOS · iPhone & iPad

Track your stack.
Transform your body.

PeptideKit is the modern way to log doses, calculate reconstitution math, and get instant AI answers about your protocol — all on your iPhone.

{/* Hero phone */}
Built for peptide users No medical advice Your data stays on your device
); } function TrustItem({ children }) { return {children}; } function TrustDot() { return ; } function Features() { const items = [ { icon: 'layers', title: 'Stack tracking', body: 'Every peptide, every dose, every cycle. One organized stack.' }, { icon: 'bell', title: 'Smart reminders', body: 'Know when your next dose is due. No more spreadsheet.' }, { icon: 'calc', title: 'Reconstitution calculator', body: 'Vial mg + BAC water → exact units to draw on your syringe.' }, { icon: 'scan', title: 'Vial scan', body: 'Point your camera at a vial label. Brand, peptide, dose, lot, expiry — extracted instantly.' }, { icon: 'trend', title: 'Weight + insights', body: 'Trends, milestones, weekly averages. Real data, real progress.' }, { icon: 'sparkles',title: 'Kit AI assistant', body: 'Ask anything about your stack. Kit reads your data on-device and answers.' }, ]; return (
Built for the work

Everything your stack needs.
Nothing it doesn't.

{items.map((f, i) => ( ))}
); } function FeatureCard({ icon, title, body }) { return (
e.currentTarget.style.borderColor = 'rgba(0,217,255,0.30)'} onMouseLeave={e => e.currentTarget.style.borderColor = ''} >
{title}
{body}
); } Object.assign(window, { Navbar, Hero, Features });