From d7b0978a935dfa1760e1265d47f3702fcf71fa19 Mon Sep 17 00:00:00 2001 From: project7 Date: Mon, 4 May 2026 13:55:38 +0900 Subject: [PATCH] Move participant count from hero to Leaderboard section (#1036) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove participant count from CampaignHero and add it as a subtitle below the Leaderboard section title. Format: "X participants". Bump version: 1.6.0 → 1.6.1 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/components/airdrop/CampaignHero.tsx | 7 ------- src/components/airdrop/Leaderboard.tsx | 5 ++++- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 564267cf..cedc8b42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "1.6.0", + "version": "1.6.1", "private": true, "workspaces": [ "packages/*" diff --git a/src/components/airdrop/CampaignHero.tsx b/src/components/airdrop/CampaignHero.tsx index 2c54a0b0..95dc6b03 100644 --- a/src/components/airdrop/CampaignHero.tsx +++ b/src/components/airdrop/CampaignHero.tsx @@ -306,13 +306,6 @@ export function CampaignHero() { {/* ── MCap progress chart ── */} - {/* ── Participant count ── */} -
- {data.totalParticipants > 0 - ? `${data.totalParticipants} participants earning` - : "Be the first to participate"} -
- {/* ── MCap explanation footnote ── */}
MCap = PLOT price × 1M max supply diff --git a/src/components/airdrop/Leaderboard.tsx b/src/components/airdrop/Leaderboard.tsx index 03d04d89..ff084c81 100644 --- a/src/components/airdrop/Leaderboard.tsx +++ b/src/components/airdrop/Leaderboard.tsx @@ -57,7 +57,10 @@ export function Leaderboard() { return (
-

Leaderboard

+

Leaderboard

+
+ {data.entries.length} {data.entries.length === 1 ? "participant" : "participants"} +