feat: link 'zaps' to pricing page

Add clickable link on 'zaps' text pointing to https://www.readwithboris.com/#pricing
Helps users learn how to send zaps to support the project
This commit is contained in:
Gigi
2025-10-15 01:34:35 +02:00
parent cd5a95dea3
commit 0eee203a9b

View File

@@ -68,7 +68,17 @@ const Support: React.FC<SupportProps> = ({ relayPool, eventStore, settings }) =>
Thank You!
</h1>
<p className="text-base md:text-lg max-w-2xl mx-auto" style={{ color: 'var(--color-text-secondary)' }}>
Your zaps help keep this project alive.
Your{' '}
<a
href="https://www.readwithboris.com/#pricing"
target="_blank"
rel="noopener noreferrer"
className="underline hover:no-underline"
style={{ color: 'var(--color-primary)' }}
>
zaps
</a>
{' '}help keep this project alive.
</p>
</div>