refactor: improve email verification/unsubscribe UI and messaging
UI Improvements: - Add spacing (mb-3) to card titles - Increase heading font size (text-lg) for better hierarchy Content Updates: - Rebrand from "Evidencija Režija" to "rezije.app" - Clarify success message: "subscribed to receive notifications" - Improve opt-out description wording - Fix Croatian grammar and phrasing - Update unsubscribe page title for clarity 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -64,21 +64,21 @@ export default function EmailUnsubscribePage({ shareId }: EmailUnsubscribePagePr
|
||||
return (
|
||||
<div className="card bg-base-100 shadow-xl max-w-2xl mx-auto mt-8">
|
||||
<div className="card-body">
|
||||
<h2 className="card-title">{t('title')}</h2>
|
||||
<h2 className="card-title mb-3">{t('title')}</h2>
|
||||
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('about.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('about.title')}</h3>
|
||||
<p>{t('about.description')}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('why.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('why.title')}</h3>
|
||||
<p>{t('why.description')}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('what-happens.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('what-happens.title')}</h3>
|
||||
<p>{t('what-happens.description')}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -64,26 +64,26 @@ export default function EmailVerifyPage({ shareId }: EmailVerifyPageProps) {
|
||||
return (
|
||||
<div className="card bg-base-100 shadow-xl max-w-2xl mx-auto mt-8">
|
||||
<div className="card-body">
|
||||
<h2 className="card-title">{t('title')}</h2>
|
||||
<h2 className="card-title mb-3">{t('title')}</h2>
|
||||
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('about.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('about.title')}</h3>
|
||||
<p>{t('about.description')}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('why.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('why.title')}</h3>
|
||||
<p>{t('why.description')}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('what-happens.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('what-happens.title')}</h3>
|
||||
<p>{t('what-happens.description')}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="font-semibold">{t('opt-out.title')}</h3>
|
||||
<h3 className="font-semibold text-lg">{t('opt-out.title')}</h3>
|
||||
<p>{t('opt-out.description')}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user