feat: simplify hero to single tagline
All checks were successful
Build Docker Image / build (push) Successful in 3m36s

This commit is contained in:
Ruslan Bakiev
2026-01-26 18:06:07 +07:00
parent eb2266d66f
commit 263e60e003
3 changed files with 10 additions and 10 deletions

View File

@@ -47,14 +47,12 @@
>
<!-- Hero content for home page -->
<template v-if="isHomePage && collapseProgress < 1" #hero>
<div class="text-center mb-4" :style="{ opacity: 1 - collapseProgress }">
<h1 class="text-4xl lg:text-5xl font-bold text-white mb-2">
{{ $t('hero.title', 'Оптовая торговля') }}
</h1>
<p class="text-lg text-white/70">
{{ $t('hero.subtitle', 'Найдите лучших поставщиков и товары') }}
</p>
</div>
<h1
class="text-3xl lg:text-4xl font-bold text-white mb-4"
:style="{ opacity: 1 - collapseProgress }"
>
{{ $t('hero.tagline', 'Make trade easy') }}
</h1>
</template>
</MainNavigation>

View File

@@ -1,6 +1,7 @@
{
"hero": {
"title": "Wholesale Trading",
"subtitle": "Find the best suppliers and products"
"subtitle": "Find the best suppliers and products",
"tagline": "Make trade easy"
}
}

View File

@@ -1,6 +1,7 @@
{
"hero": {
"title": "Оптовая торговля",
"subtitle": "Найдите лучших поставщиков и товары"
"subtitle": "Найдите лучших поставщиков и товары",
"tagline": "Торговля — это просто"
}
}