Problem
"3 participants earning" is shown at the bottom of the CampaignHero. It's not very useful there and adds clutter. Better placement is in the Leaderboard section where participant context is more relevant.
Solution
- Remove participant count from `CampaignHero.tsx`
- Add participant count to `Leaderboard.tsx` — show "X participants" as a subtitle below the section title
Leaderboard section header
Before:
```
Leaderboard
```
After:
```
Leaderboard
3 participants
```
The count comes from the existing `/api/airdrop/status` response (`totalParticipants`), or can be derived from the leaderboard data length.
Files
- `src/components/airdrop/CampaignHero.tsx` — remove participant count section
- `src/components/airdrop/Leaderboard.tsx` — add participant count subtitle
Acceptance Criteria
Problem
"3 participants earning" is shown at the bottom of the CampaignHero. It's not very useful there and adds clutter. Better placement is in the Leaderboard section where participant context is more relevant.
Solution
Leaderboard section header
Before:
```
Leaderboard
```
After:
```
Leaderboard
3 participants
```
The count comes from the existing `/api/airdrop/status` response (`totalParticipants`), or can be derived from the leaderboard data length.
Files
Acceptance Criteria