Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/layout/components/HomepageHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@
</div>
<div
class="flex flex-row gap-x-7 child:px-3 child:py-1 child:text-lg child:font-light child:hover:bg-white/10 child:hover:rounded-lg">
<div @click="toggleRegistration">Create Account</div>
<div @click="toggleLogin">Login</div>
<div @click="toggleRegistration">
{{ $t("homepage.navigation.registration") }}
</div>
<div @click="toggleLogin">
{{ $t("homepage.navigation.login") }}
</div>
</div>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions src/locales/en_US/homepage.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"navigation": {
"registration": "Create Account",
"login": "Login"
},
"images": {
"section_title": "Command Your Empire from Anywhere",
"section_lead": "Monitor bases, manage production, and control your plans effortlessly. With intuitive, powerful tools, you can strategize, expand, and outsmart your rivals wherever you are.",
Expand Down
Loading