fix: change trial banner button to mailto contact link
All checks were successful
Deploy Development / deploy (push) Successful in 50s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 13s

Replace subscription selection link with email contact for now.
Future: Central subscription system on jinkendo.de for all apps.

Button text:
- "Abo wählen" → "Abo anfragen"
- "Jetzt upgraden" → "Kontakt aufnehmen"

Opens mailto:mitai@jinkendo.de with pre-filled subject and body.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lars 2026-03-21 12:52:13 +01:00
parent 3dc3774d76
commit 526da02512

View File

@ -64,8 +64,8 @@ export default function TrialBanner({ profile }) {
</div> </div>
</div> </div>
<Link <a
to="/settings?tab=subscription" href="mailto:mitai@jinkendo.de?subject=Abo-Anfrage%20für%20Mitai%20Jinkendo&body=Hallo,%0A%0Aich%20möchte%20gerne%20ein%20Abo%20für%20Mitai%20Jinkendo%20abschließen.%0A%0AMein%20Profil:%20"
style={{ style={{
padding: '10px 20px', padding: '10px 20px',
borderRadius: 8, borderRadius: 8,
@ -76,11 +76,12 @@ export default function TrialBanner({ profile }) {
textDecoration: 'none', textDecoration: 'none',
whiteSpace: 'nowrap', whiteSpace: 'nowrap',
border: 'none', border: 'none',
cursor: 'pointer' cursor: 'pointer',
display: 'inline-block'
}} }}
> >
{isUrgent ? 'Jetzt upgraden' : 'Abo wählen'} {isUrgent ? 'Kontakt aufnehmen' : 'Abo anfragen'}
</Link> </a>
</div> </div>
) )
} }