Skip to content

Commit

Permalink
docs: πŸ§‘β€πŸ’» Update about
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Nov 26, 2024
1 parent 0e1202e commit 4651330
Showing 1 changed file with 35 additions and 33 deletions.
68 changes: 35 additions & 33 deletions src/components/About/index.vue
Original file line number Diff line number Diff line change
@@ -1,43 +1,45 @@
<template>
<div class="flex flex-col items-center justify-center h-full -mt-8 space-y-4">
<a class="block" :href="escrcpyURL" target="_blank">
<img src="$electron/resources/build/logo.png" class="h-48" alt="" />
</a>
<div class="h-full">
<div class="h-full flex flex-col items-center justify-center space-y-4 -mt-8">
<a class="block" :href="escrcpyURL" target="_blank">
<img src="$electron/resources/build/logo.png" class="h-48" alt="" />
</a>

<div class="text-xl text-center italic text-gray-700 dark:text-white">
{{ $t("about.description") }}
</div>
<div class="text-xl text-center italic text-gray-700 dark:text-white">
{{ $t("about.description") }}
</div>

<div class="pt-8">
<el-button
:loading="loading"
type="primary"
size="large"
@click="handleUpdate"
>
{{
loading && percent
? `${$t("about.update.progress")}...(${percent.toFixed(1)}%οΌ‰`
: $t("about.update")
}}
</el-button>
<div class="pt-8">
<el-button
:loading="loading"
type="primary"
size="large"
@click="handleUpdate"
>
{{
loading && percent
? `${$t("about.update.progress")}...(${percent.toFixed(1)}%οΌ‰`
: $t("about.update")
}}
</el-button>

<el-button size="large" class="group" @click="handleSponsor">
<span class="group-hover:animate-rubber-band">β™₯</span>
<span class="pl-1">{{ $t('about.sponsor.title') }}</span>
</el-button>
</div>
<el-button size="large" class="group" @click="handleSponsor">
<span class="group-hover:animate-rubber-band">β™₯</span>
<span class="pl-1">{{ $t('about.sponsor.title') }}</span>
</el-button>
</div>

<div class="text-sm">
Supported by
<div class="text-sm">
Supported by

<a
class="hover:underline text-primary-500"
href="https://viarotel.github.io/"
target="_blank"
>Viarotel</a>
<a
class="hover:underline text-primary-500"
href="https://viarotel.github.io/"
target="_blank"
>Viarotel</a>

v{{ version }}
v{{ version }}
</div>
</div>

<SponsorDialog ref="sponsorDialogRef" />
Expand Down

0 comments on commit 4651330

Please sign in to comment.