const tools = [ { title: 'Logframe Generator', href: '/logframe', desc: 'Structured goal → outcome → output → activity matrices aligned to donor requirements. Includes OVIs and means of verification.', inputs: 'Project title, sector, geography, donor, objectives', sample: 'A 4-level logframe with SMART indicators, assumptions column, and verification sources — ready for annexing.', }, { title: 'SMART Indicators', href: '/smart-indicators', desc: 'Evaluation-ready indicators that survive panel review. Auto-aligned to your logframe outputs.', inputs: 'Logframe or project description, M&E framework preferences', sample: '8–12 indicators per output with baselines, targets, data sources, and collection frequency.', }, { title: 'Theory of Change', href: '/theory-of-change', desc: 'Inputs → activities → outputs → outcomes → impact. Assumptions and evidence gaps surfaced clearly.', inputs: 'Problem statement, target population, intervention design', sample: 'A narrative ToC with causal pathways, assumption testing notes, and a visual summary.', }, { title: 'Funder Rewriter', href: '/funder-rewriter', desc: 'Reshape existing proposals to match a new funder\'s priorities, tone, and structure — without losing your voice.', inputs: 'Existing proposal text, target funder name or guidelines', sample: 'A rewritten proposal section with tracked changes summary and alignment notes.', }, ]; const comparison = [ { task: 'Build a logframe from scratch', manual: '2–3 days', toolkit: '< 2 minutes' }, { task: 'Write SMART indicators', manual: '4–6 hours', toolkit: '30 seconds' }, { task: 'Draft a theory of change', manual: '1–2 days', toolkit: '< 2 minutes' }, { task: 'Rewrite proposal for new funder', manual: '1 day', toolkit: '45 seconds' }, ]; const quotes = [ { text: 'I used to dread logframe season. Now I finish them over lunch.', author: 'Programme Manager, East Africa regional NGO' }, { text: 'The SMART indicators it generates are better than what our M&E team was producing manually.', author: 'Grants Lead, UK-based INGO' }, { text: 'We rewrote a USAID proposal for DFID in under a minute. It took three rounds of review last time.', author: 'Senior Grant Writer, health sector NGO' }, ]; export default function GrantToolsPage() { return ( <> {/* Hero */}

Grant tools

Four tools. Zero fluff.

Each tool solves one specific grant-writing problem. Describe your project, get a professional draft, refine and export.

{/* Tool cards */}
{tools.map((t) => (

{t.title}

{t.desc}

Inputs

{t.inputs}

Sample output

{t.sample}

Try it free →
))}
{/* Comparison */}

Manual vs. Toolkit

{comparison.map((row, i) => ( ))}
Task Manual Toolkit
{row.task} {row.manual} {row.toolkit}
{/* Practitioner quotes */}

From the field

{quotes.map((q, i) => (

"{q.text}"

{q.author}

))}
{/* CTA */}

Pick a tool. Finish the document.

No signup required for your first document.

Try free →
); }