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 @@