Phase 2 and Demo

This commit is contained in:
2026-05-02 20:14:15 -05:00
parent d909cb7c30
commit 056bd27f89
36 changed files with 3867 additions and 299 deletions
@@ -1,14 +1,17 @@
/**
* Admin → Fund-a-Need / Paddle Raise set tiers, open campaign, show live total.
* Admin → Fund-a-Need / Paddle Raise set tiers, open campaign, show live total.
* TODO: configure PaddleRaiseCampaign, subscribe to paddle_raise_update events.
*/
export default function FundANeedPage() {
return (
<main className="p-6 space-y-4">
<h1 className="text-2xl font-bold">Fund-a-Need</h1>
<div className="border border-dashed border-gray-300 rounded-xl p-8 text-center text-gray-400 text-sm">
Paddle raise setup & live totals not yet implemented
<div className="p-6 space-y-5 max-w-3xl mx-auto">
<div>
<h1 className="text-2xl font-black text-gray-900">Fund-a-Need</h1>
<p className="text-sm text-gray-400 mt-0.5">Paddle raise setup &amp; live totals</p>
</div>
</main>
<div className="card p-8 text-center text-gray-400 text-sm border-dashed border-2 border-gray-200 bg-gray-50/50">
Paddle raise setup &amp; live totals not yet implemented
</div>
</div>
);
}