From fedb197be0f6a64c3189b0f5fe5a45f13ad55dc7 Mon Sep 17 00:00:00 2001 From: davidmonterocrespo24 Date: Thu, 14 May 2026 05:28:59 +0200 Subject: [PATCH] feat(header): add Pricing link to top nav + landing footer The /pricing page exists (PricingPlaceholder upstream, real PricingPage portal-mounted by the private overlay) but had no entry in the top nav. Adds 'pricing' to header.nav in all 9 locales (de, en, es, fr, it, ja, pt-br, ru, zh-cn), wires the Link in AppHeader between About and Blog, and mirrors the link in the landing-page footer. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/components/layout/AppHeader.tsx | 3 +++ frontend/src/i18n/locales/de/common.json | 1 + frontend/src/i18n/locales/en/common.json | 1 + frontend/src/i18n/locales/es/common.json | 1 + frontend/src/i18n/locales/fr/common.json | 1 + frontend/src/i18n/locales/it/common.json | 1 + frontend/src/i18n/locales/ja/common.json | 1 + frontend/src/i18n/locales/pt-br/common.json | 1 + frontend/src/i18n/locales/ru/common.json | 1 + frontend/src/i18n/locales/zh-cn/common.json | 1 + frontend/src/pages/LandingPage.tsx | 1 + 11 files changed, 13 insertions(+) diff --git a/frontend/src/components/layout/AppHeader.tsx b/frontend/src/components/layout/AppHeader.tsx index 864e3a98..5331fdda 100644 --- a/frontend/src/components/layout/AppHeader.tsx +++ b/frontend/src/components/layout/AppHeader.tsx @@ -143,6 +143,9 @@ export const AppHeader: React.FC = ({ autoSave }) => { {t('header.nav.about')} + + {t('header.nav.pricing')} + { {t('header.nav.documentation')} {t('header.nav.examples')} {t('header.nav.editor')} + {t('header.nav.pricing')} {t('header.nav.about')}

{t('footer.about')}