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/08-charities-hero.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/03-main-fundraiser-card.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/04-main-volunteer-card.jpg", }, { 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: "/images/landing/05-main-org-card.jpg", }, ] export default function HomePage() { return (
) }