// src/v1.jsx // V1 "Field Report" — editorial / documentary aesthetic. // Restrained, type-led. Yellow only on the primary CTA. Cerulean for eyebrows. // Stats laid out as a quiet typographic row (CV-style). // ── V1 Home ──────────────────────────────────────────────────────────────── function V1Home({ onNavigate }) { return (
); } // ── V1 Free Starter Kit ─────────────────────────────────────────────────── function V1Kit({ onNavigate }) { const bullets = [ 'The AI tools and setup I\'m using in my $100 freelance challenge', 'Ready-to-use prompts that work in Claude, ChatGPT, and Gemini', 'A step-by-step system to build your first AI workflow in under an hour', 'Full 14-module workbook — go deeper when you\'re ready', ]; return (
); } // ── V1 About ─────────────────────────────────────────────────────────────── function V1About({ onNavigate }) { return (
); } // ── V1 Disclaimer ───────────────────────────────────────────────────────── function V1Disclaimer({ onNavigate }) { const sections = [ { h: 'Not financial advice', p: `Everything published on promptmode.io and the associated YouTube channel is for educational and entertainment purposes only. Nothing here constitutes financial, legal, tax, investment, or professional advice. Consult a qualified professional before making decisions about your money or your business.`, }, { h: 'Results vary', p: `The income reported in the $100 AI Freelance Challenge is one person's attempt, in a specific market, at a specific time. Your results will differ — often substantially. Most people who attempt to freelance with AI tools earn $0 in their first month. We document the $0 days as honestly as the paying ones.`, }, { h: 'No earnings guarantees', p: `We make no representations or guarantees about your ability to earn income using any AI tool, prompt, system, or technique discussed here. Specific dollar figures shown in episodes refer to specific past attempts and should not be interpreted as projections.`, }, { h: 'Affiliate disclosure', p: `As of Season 01, promptmode.io contains no affiliate links and accepts no sponsorships. If this changes, all sponsored content will be clearly labeled and a current list of partners will be published here.`, }, { h: 'Third-party tools', p: `Tools referenced — including Claude, ChatGPT, Gemini, and others — are owned by their respective providers. Their availability, pricing, and capabilities change without notice. Always check current terms of service before using any AI tool for paid work.`, }, ]; return (
); } Object.assign(window, { V1Home, V1Kit, V1About, V1Disclaimer });