18 lines
696 B
TypeScript
18 lines
696 B
TypeScript
/**
|
|
* 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 (
|
|
<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 & live totals</p>
|
|
</div>
|
|
<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 & live totals — not yet implemented
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|