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

View File

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