fix(i18n): Add missing About page timeline translations

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
poduck
2025-12-03 22:27:25 -05:00
parent bc094f2f80
commit 3e8634b370
2 changed files with 11 additions and 5 deletions

View File

@@ -75,19 +75,19 @@ const AboutPage: React.FC = () => {
<div className="mt-8 space-y-4">
<div className="flex items-center gap-3">
<div className="w-2 h-2 bg-brand-200 rounded-full" />
<span className="text-brand-100">8+ years building scheduling solutions</span>
<span className="text-brand-100">{t('marketing.about.story.timeline.experience')}</span>
</div>
<div className="flex items-center gap-3">
<div className="w-2 h-2 bg-brand-200 rounded-full" />
<span className="text-brand-100">Battle-tested with real businesses</span>
<span className="text-brand-100">{t('marketing.about.story.timeline.battleTested')}</span>
</div>
<div className="flex items-center gap-3">
<div className="w-2 h-2 bg-brand-200 rounded-full" />
<span className="text-brand-100">Features born from customer feedback</span>
<span className="text-brand-100">{t('marketing.about.story.timeline.feedback')}</span>
</div>
<div className="flex items-center gap-3">
<div className="w-2 h-2 bg-brand-200 rounded-full" />
<span className="text-brand-100">Now available to everyone</span>
<span className="text-brand-100">{t('marketing.about.story.timeline.available')}</span>
</div>
</div>
</div>