import Link from "next/link" import { Nav, Footer, BottomCta, ImagePlaceholder } from "./for/_components" const PERSONAS = [ { slug: "charities", title: "Charity Manager", oneLiner: "You raise pledges at events. We make sure the money actually arrives.", tags: ["Dashboard", "WhatsApp reminders", "Gift Aid", "Zakat", "HMRC export"], image: "charity-manager-gala-dinner", }, { slug: "fundraisers", title: "Personal Fundraiser", oneLiner: "You share a LaunchGood or JustGiving link. We track who actually donates.", tags: ["LaunchGood", "Enthuse", "JustGiving", "Social sharing", "Conversion tracking"], image: "fundraiser-sharing-phone", }, { slug: "volunteers", title: "Volunteer", oneLiner: "You help collect pledges at events. We show you exactly how much you raised.", tags: ["Personal link", "Live stats", "Leaderboard", "WhatsApp share"], image: "volunteer-event-table", }, { slug: "organisations", title: "Organisation", oneLiner: "You coordinate pledges across multiple charities or departments. We track every commitment.", tags: ["Multi-party", "Fund allocation", "Pipeline view", "Instalments"], image: "org-boardroom-meeting", }, ] export default function HomePage() { return (
) }