From 066ffe79efb2116711595294665070fe07bcb64d Mon Sep 17 00:00:00 2001 From: 777genius Date: Tue, 5 May 2026 09:15:47 +0300 Subject: [PATCH] feat(landing): add documentation links --- landing/components/layout/AppHeader.vue | 2 +- landing/components/sections/HeroSection.vue | 59 +++++++++++++++++++-- landing/locales/ar.json | 2 + landing/locales/de.json | 2 + landing/locales/en.json | 2 + landing/locales/es.json | 2 + landing/locales/fr.json | 2 + landing/locales/hi.json | 2 + landing/locales/ja.json | 2 + landing/locales/pt.json | 2 + landing/locales/ru.json | 2 + landing/locales/zh.json | 2 + 12 files changed, 77 insertions(+), 4 deletions(-) diff --git a/landing/components/layout/AppHeader.vue b/landing/components/layout/AppHeader.vue index 208cd008..16e3a4eb 100644 --- a/landing/components/layout/AppHeader.vue +++ b/landing/components/layout/AppHeader.vue @@ -11,10 +11,10 @@ const docsHref = computed(() => withBase(locale.value === 'ru' ? 'docs/ru/' : 'd const navItems = computed(() => [ { href: '#screenshots', label: t('nav.screenshots') }, + { href: docsHref.value, label: t('nav.docs') }, { href: '#download', label: t('nav.download') }, { href: '#comparison', label: t('nav.comparison') }, { href: '#pricing', label: t('nav.pricing') }, - { href: docsHref.value, label: t('footer.links.docs') }, { href: '#faq', label: t('nav.faq') }, ]); diff --git a/landing/components/sections/HeroSection.vue b/landing/components/sections/HeroSection.vue index 3764a55d..3cf730fb 100644 --- a/landing/components/sections/HeroSection.vue +++ b/landing/components/sections/HeroSection.vue @@ -1,5 +1,10 @@