- Remove FPX payment rail entirely (Malaysian, not UK) - Add volunteer portal (/v/[code]) with live pledge tracking - Add public event page (/e/[slug]) with progress bar + social proof - Add fundraiser leaderboard (/dashboard/events/[id]/leaderboard) - Add WhatsApp share buttons on confirmation, bank instructions, volunteer view - Enhanced Gift Aid UX with +25% bonus display and HMRC declaration text - Gift Aid report export (HMRC-ready CSV filter) - Volunteer view link + WhatsApp share on QR code cards - Updated home page: 4 personas, 3 UK payment rails, 8 features - Public event API endpoint with privacy-safe donor name truncation - Volunteer API with stats, conversion rate, auto-refresh
27 lines
837 B
HTML
27 lines
837 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>404 — Calvana</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<div class="nav-inner">
|
|
<a href="/" class="logo">calvana<span>.exe</span></a>
|
|
<div class="nav-links">
|
|
<a href="/manifesto">/manifesto</a>
|
|
<a href="/live">/live</a>
|
|
<a href="/hire">/hire</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main class="page" style="text-align:center;padding-top:6rem">
|
|
<h1 class="hero-title">404</h1>
|
|
<p class="subtitle" style="margin:1rem auto">This page doesn't exist yet. But give me 10 minutes.</p>
|
|
<a href="/manifesto" class="btn btn-outline" style="margin-top:1.5rem">← Back to manifesto</a>
|
|
</main>
|
|
</body>
|
|
</html>
|