'use client'; import { useState } from 'react'; const faqs = [ { q: 'Can I use the free tier forever?', a: 'Yes. Your first document per tool is always free — no expiry, no signup.' }, { q: 'What happens when I hit the free limit?', a: 'You\'ll see a prompt to upgrade. Your existing documents stay accessible.' }, { q: 'Can I switch between monthly and annual?', a: 'Yes, at any time. Switching to annual applies a prorated credit.' }, { q: 'Do you offer NGO discounts?', a: 'Pro is already priced for small NGOs. Team pricing includes volume discounts — contact us for 10+ seats.' }, { q: 'What payment methods do you accept?', a: 'Visa, Mastercard, and bank transfer for annual Team plans.' }, ]; const tiers = [ { name: 'Free', monthly: 0, annual: 0, desc: 'Try every tool — no signup required.', features: ['1 document per tool', 'Word & Excel export', 'No account needed'], cta: 'Start free', href: '/logframe', highlight: false, }, { name: 'Pro', monthly: 29, annual: 24, desc: 'For grant writers who submit regularly.', features: ['Unlimited documents', 'PDF export & templates', 'Save & revisit past work', 'Priority support', 'Funder-specific formatting'], cta: 'Get Pro', href: '/logframe', highlight: true, }, { name: 'Team', monthly: 79, annual: 66, desc: 'For organisations with multiple writers.', features: ['Everything in Pro', 'Up to 10 seats', 'Shared document library', 'Brand & template presets', 'Dedicated onboarding'], cta: 'Contact us', href: 'mailto:hello@ngotoolkitlab.com', highlight: false, }, ]; export default function PricingPage() { const [annual, setAnnual] = useState(false); return ( <>

Pricing

Simple pricing. No surprises.

Start free, upgrade when you need volume. Cancel any time.

{/* Toggle */}
Monthly Annual save 17%
{/* Tier cards */}
{tiers.map((t) => (

{t.name}

{t.desc}

{t.monthly === 0 ? 'Free' : `$${annual ? t.annual : t.monthly}`} {t.monthly > 0 && /month}
    {t.features.map((f, i) => (
  • {f}
  • ))}
{t.cta}
))}
{/* FAQ */}

Frequently asked questions

{faqs.map((f, i) => (

{f.q}

{f.a}

))}
{/* CTA */}

Ready to finish the logframe?

Your first document is free. No signup needed.

Try free →
); }