const pillars = [ { title: 'Speed without shortcuts', desc: 'Professional-grade outputs in minutes. No templates, no copy-paste — real structured generation.' }, { title: 'Built for practitioners', desc: 'Every feature exists because a grant writer asked for it. No feature exists because a PM thought it was clever.' }, { title: 'Accessible by default', desc: 'Free tier forever. No signup wall. If you\'re writing grants for a small NGO, you shouldn\'t need a budget line to access tools.' }, ]; const stats = [ { value: '120+', label: 'Organisations served' }, { value: '30', label: 'Countries' }, { value: '4', label: 'Professional-grade tools' }, { value: '<2 min', label: 'Average document time' }, ]; export default function AboutPage() { return ( <> {/* Hero */}

About

We build tools for people who write grants.

NGO Toolkit Lab exists because grant writing is important work — and the tooling around it has been stuck in 2005.

{/* Founder note */}

From the founder

I spent years watching talented programme managers burn weekends on logframes and theories of change — documents that should take hours, not days. The knowledge was there. The sector expertise was there. What was missing was tooling that respected their time.

NGO Toolkit Lab started as a logframe generator I built for a friend submitting a DFID proposal. She finished in twenty minutes instead of three days. That felt worth pursuing.

We're a small team. We ship tools that work. If something's broken or missing, tell us — we fix things fast.

Omair

Founder, NGO Toolkit Lab

{/* Mission pillars */}

What we believe

{pillars.map((p, i) => (

{p.title}

{p.desc}

))}
{/* By the numbers */}

By the numbers

{stats.map((s, i) => (

{s.value}

{s.label}

))}
{/* CTA */}

Try the tools. Judge the work.

No pitch deck. No demo call. Just open a tool and see what it builds.

Try free →
); }