import Link from "next/link" import Image from "next/image" import { Nav, Footer, BottomCta, LandingImage } from "./for/_components" /* ── Hero stats ── */ const HERO_STATS = [ { stat: "30–50%", label: "of pledges never collected" }, { stat: "60s", label: "to complete a pledge" }, { stat: "£0", label: "cost to charities" }, { stat: "2 min", label: "signup to first link" }, ] /* ── Persona cards ── */ 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: "/images/landing/persona-charity-manager.jpg", }, { slug: "organisations", title: "Programme Manager", oneLiner: "You coordinate campaigns across teams. We give you the full pipeline view.", tags: ["Multi-campaign", "Team oversight", "Pipeline view", "Instalments", "Reporting"], image: "/images/landing/persona-programme-manager.jpg", }, { 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: "/images/landing/persona-fundraiser.jpg", }, { 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: "/images/landing/persona-volunteer.jpg", }, ] export default function HomePage() { return (
) }