feat: add call-to-action message at bottom of support page

Encourage visitors to zap Boris to show up on the supporter list
This commit is contained in:
Gigi
2025-10-15 01:36:12 +02:00
parent 0eee203a9b
commit d3b7a8ddde

View File

@@ -118,11 +118,14 @@ const Support: React.FC<SupportProps> = ({ relayPool, eventStore, settings }) =>
</>
)}
<div className="mt-12 md:mt-16 text-center">
<div className="mt-12 md:mt-16 text-center space-y-4">
<p className="text-sm" style={{ color: 'var(--color-text-muted)' }}>
Total supporters: {supporters.length}
Total zaps: {supporters.reduce((sum, s) => sum + s.zapCount, 0)}
</p>
<p className="text-sm" style={{ color: 'var(--color-text-secondary)' }}>
Want to show up here? Zap Boris a meaningful amount of sats and your avatar will show up above.
</p>
</div>
</div>
</div>