investment page/curency switcher
This commit is contained in:
@ -30,11 +30,13 @@
|
||||
<i class="uil uil-user text-[31px] cursor-pointer"></i>
|
||||
<i class="uil uil-shopping-cart text-[31px] cursor-pointer"></i>
|
||||
</div>
|
||||
<LangSwitcher />
|
||||
<CurrSelector />
|
||||
<div class="flex">
|
||||
<LangSwitcher />
|
||||
<CountryCurrencySelector />
|
||||
</div>
|
||||
<ThemeSwitcher />
|
||||
<button
|
||||
class="hover:bg-button-hover bg-button cursor-pointer rounded-xl px-6 py-3 font-medium text-white transition-all"
|
||||
class="hover:bg-button-hover bg-button cursor-pointer rounded-xl px-6 py-3 font-medium text-white transition-all text-inter"
|
||||
>
|
||||
E-shop
|
||||
</button>
|
||||
@ -62,7 +64,10 @@
|
||||
<i class="uil uil-user text-[31px] cursor-pointer"></i>
|
||||
<i class="uil uil-shopping-cart text-[31px] cursor-pointer"></i>
|
||||
</div>
|
||||
<LangSwitcher />
|
||||
<div class="flex">
|
||||
<LangSwitcher />
|
||||
<CountryCurrencySelector />
|
||||
</div>
|
||||
<ThemeSwitcher />
|
||||
<i
|
||||
variant="subtle"
|
||||
@ -92,7 +97,7 @@
|
||||
:key="index"
|
||||
class="flex items-center justify-between transition-all hover:text-text-light/80 dark:hover:text-text-dark/70 cursor-pointer"
|
||||
>
|
||||
<div class="text-inter leading-[70%] text-lg">
|
||||
<div class="leading-[70%] text-lg">
|
||||
<span class="mr-4">0{{ index + 1 }}</span>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
@ -164,7 +169,7 @@
|
||||
:key="index"
|
||||
class="flex items-center justify-between transition-all hover:text-text-light/80 dark:hover:text-text-dark/70 cursor-pointer"
|
||||
>
|
||||
<div class="text-inter leading-[70%] text-lg">
|
||||
<div class="leading-[70%] text-lg">
|
||||
<span class="mr-4">0{{ index + 1 }}</span>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
@ -184,13 +189,19 @@
|
||||
</svg>
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="text-inter leading-[70%] text-lg">
|
||||
<p class="leading-[70%] text-lg">
|
||||
{{ $t("change_language") }}
|
||||
</p>
|
||||
<LangSwitcher />
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="text-inter leading-[70%] text-lg">
|
||||
<p class="leading-[70%] text-lg">
|
||||
{{ $t("change_currency_country") }}
|
||||
</p>
|
||||
<CountryCurrencySelector />
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="leading-[70%] text-lg">
|
||||
{{ $t("change_theme") }}
|
||||
</p>
|
||||
<ThemeSwitcher />
|
||||
@ -243,7 +254,7 @@
|
||||
:key="index"
|
||||
class="flex items-center justify-between transition-all hover:text-text-light/80 dark:hover:text-text-dark/70 cursor-pointer"
|
||||
>
|
||||
<div class="text-inter leading-[70%] text-lg">
|
||||
<div class="leading-[70%] text-lg">
|
||||
<span class="mr-4">0{{ index + 1 }}</span>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
@ -263,13 +274,19 @@
|
||||
</svg>
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="text-inter leading-[70%] text-lg">
|
||||
<p class="leading-[70%] text-lg">
|
||||
{{ $t("change_language") }}
|
||||
</p>
|
||||
<LangSwitcher />
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="text-inter leading-[70%] text-lg">
|
||||
<p class="leading-[70%] text-lg">
|
||||
{{ $t("change_currency_country") }}
|
||||
</p>
|
||||
<CountryCurrencySelector />
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="leading-[70%] text-lg">
|
||||
{{ $t("change_theme") }}
|
||||
</p>
|
||||
<ThemeSwitcher />
|
||||
@ -282,6 +299,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import CountryCurrencySelector from "./CountryCurrencySelector.vue";
|
||||
import LangSwitcher from "./LangSwitcher.vue";
|
||||
|
||||
const menuStore = useMenuStore();
|
||||
|
Reference in New Issue
Block a user