-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8edbaf5
commit ec063ea
Showing
4 changed files
with
92 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<script lang="ts" setup> | ||
import { Divider } from '@/components' | ||
import { VERSION } from '@/data/config' | ||
import LinkIcon from '@/assets/icons-v3/link.svg' | ||
import MetaletLogo from '@/assets/images/metalet-logo-v3.svg?url' | ||
</script> | ||
|
||
<template> | ||
<div class="pt-20 flex flex-col items-center h-full"> | ||
<img class="mx-auto w-[130px]" :src="MetaletLogo" alt="metalet-logo" /> | ||
|
||
<div class="mt-5 text-center"> | ||
<h1 class="text-3xl font-extrabold">Metalet</h1> | ||
<p class="mt-2 text-sm text-gray-primary">v{{ VERSION }}</p> | ||
</div> | ||
|
||
<div class="w-64 mt-6 grow"> | ||
<Divider /> | ||
<a | ||
target="_blank" | ||
class="flex items-center justify-between py-4" | ||
href="https://docs.google.com/document/d/1JFUS6f3Vs3Jh2CA4xpTixOUaMto4pANxmM_7b3suut8/edit" | ||
> | ||
<span class="text-sm font-medium">Terms of Service</span> | ||
<LinkIcon class="w-4.5" /> | ||
</a> | ||
<Divider /> | ||
<a | ||
target="_blank" | ||
class="flex items-center justify-between py-4" | ||
href="https://docs.google.com/document/d/1MyCcA9E6sVd6ThvQaocBeN07umYUJB4zhbhT3E4LxWw/edit" | ||
> | ||
<span class="text-sm font-medium">Privacy policy</span> | ||
<LinkIcon class="w-4.5" /> | ||
</a> | ||
<Divider /> | ||
</div> | ||
|
||
<a href="https://metalet.space/" target="_blank" class="text-center text-xs text-blue-primary py-12"> | ||
Go to the official website to learn more. | ||
</a> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script lang="ts" setup> | ||
import { ref } from 'vue' | ||
import ResetModal from '@/components/ResetModal.vue' | ||
import ArrowRightIcon from '@/assets/icons-v3/arrow_right.svg?url' | ||
const showResetModal = ref(false) | ||
</script> | ||
|
||
<template> | ||
<div class="-mx-4"> | ||
<router-link | ||
to="/wallet/backup" | ||
class="h-15 py-3 flex items-center justify-between cursor-pointer hover:bg-gray-secondary rounded-lg px-4" | ||
> | ||
<span>Change Password</span> | ||
<img :src="ArrowRightIcon" alt="" /> | ||
</router-link> | ||
<div class="h-15 flex items-center cursor-pointer rounded-lg px-4"> | ||
<span class="text-red-500 hover:underline" @click="showResetModal = true">Reset wallet</span> | ||
</div> | ||
</div> | ||
<ResetModal v-model:show="showResetModal" /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters