Skip to content

Commit 8064479

Browse files
committed
feat(frontend): add localization for free use section
1 parent 2496756 commit 8064479

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

frontend/src/components/HomePage/FreeUse.vue

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ import InteractiveHoverButton from '@/components/ui/InteractiveHoverButton.vue'
77
<div
88
class="bg-white/2 container relative z-10 flex flex-col items-center gap-8 overflow-hidden rounded-2xl border border-white/20 px-12 py-24 backdrop-blur-[8px]"
99
>
10-
<span class="text-center text-4xl font-bold"> Are you ready? </span>
11-
<span class="text-center text-xl font-normal">
12-
Join thousands of content creators who have improved the quality
13-
<br />of their broadcasts with using our tools.
14-
</span>
15-
<InteractiveHoverButton text="Let's start!" size="lg" class="w-[11rem] text-base" />
10+
<span class="text-center text-4xl font-bold">{{ $t('freeuse.title') }}</span>
11+
<span class="whitespace-pre-line text-center text-xl font-normal">{{
12+
$t('freeuse.description')
13+
}}</span>
14+
<InteractiveHoverButton :text="$t('freeuse.button')" size="lg" class="w-[11rem] text-base" />
1615
<div
1716
class="bg-gradient absolute -top-96 left-0 right-0 -z-10 rounded-full p-52 blur-[100px]"
1817
></div>

frontend/src/locales/en.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@
5757
"contribute": "Contribute on Github",
5858
"star": "Star the Project"
5959
},
60+
"freeuse": {
61+
"title": "Are you ready?",
62+
"description": "Join thousands of content creators who have improved the quality\nof their broadcasts\nwith using our tools.",
63+
"button": "Let's start!"
64+
},
6065
"footer": {
6166
"left": {
6267
"description": "Track Your Game, Own the Stream"

frontend/src/locales/ru.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@
5757
"contribute": "Внести свой вклад",
5858
"star": "Отметить звёздочкой"
5959
},
60+
"freeuse": {
61+
"title": "Вы готовы?",
62+
"description": "Присоединяйтесь к тысячам создателей контента, которые улучшили качество\nсвоих трансляций с помощью наших инструментов.",
63+
"button": "Начнём!"
64+
},
6065
"footer": {
6166
"left": {
6267
"description": "Следи за игрой, властвуй на стриме"

0 commit comments

Comments
 (0)