2022-11-24 05:38:14 +03:00
|
|
|
<script setup lang="ts">
|
2022-11-27 06:13:39 +03:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(event: 'close'): void
|
|
|
|
}>()
|
2022-11-24 05:38:14 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-04 09:27:08 +03:00
|
|
|
<div my-8 px-3 sm:px-8 md:max-w-200 flex="~ col gap-4" relative>
|
2022-12-02 10:27:44 +03:00
|
|
|
<button btn-action-icon absolute top--8 right-0 m1 aria-label="Close" @click="emit('close')">
|
2022-12-19 23:31:12 +03:00
|
|
|
<div i-ri:close-line />
|
2022-11-27 06:13:39 +03:00
|
|
|
</button>
|
|
|
|
|
2023-02-12 14:56:29 +03:00
|
|
|
<img :alt="$t('app_logo')" :src="`/${''}logo.svg`" w-20 h-20 height="80" width="80" mxa class="rtl-flip">
|
2022-11-24 05:38:14 +03:00
|
|
|
<h1 mxa text-4xl mb4>
|
2022-12-02 21:18:16 +03:00
|
|
|
{{ $t('help.title') }}
|
2022-11-24 05:38:14 +03:00
|
|
|
</h1>
|
|
|
|
<p>
|
2022-12-02 21:18:16 +03:00
|
|
|
{{ $t('help.desc_para1') }}
|
2022-11-24 05:38:14 +03:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-12-02 21:18:16 +03:00
|
|
|
<b text-primary>{{ $t('help.desc_highlight') }}</b>
|
|
|
|
{{ $t('help.desc_para2') }}
|
2022-11-24 05:38:14 +03:00
|
|
|
</p>
|
2022-12-20 13:58:50 +03:00
|
|
|
<p>
|
2023-01-03 13:32:02 +03:00
|
|
|
{{ $t('help.desc_para4') }}
|
2023-01-12 03:39:53 +03:00
|
|
|
<NuxtLink font-bold text-primary href="https://github.com/elk-zone/elk" target="_blank">
|
2023-01-03 13:32:02 +03:00
|
|
|
{{ $t('help.desc_para5') }}
|
2023-01-09 16:22:19 +03:00
|
|
|
</NuxtLink>
|
2023-01-03 13:32:02 +03:00
|
|
|
{{ $t('help.desc_para6') }}
|
2022-12-20 13:58:50 +03:00
|
|
|
</p>
|
2022-12-02 21:18:16 +03:00
|
|
|
{{ $t('help.desc_para3') }}
|
2022-11-25 10:39:30 +03:00
|
|
|
<p flex="~ gap-2 wrap" mxa>
|
2023-01-30 13:58:18 +03:00
|
|
|
<template v-for="team of elkTeamMembers" :key="team.github">
|
2023-01-09 16:22:19 +03:00
|
|
|
<NuxtLink :href="`https://github.com/sponsors/${team.github}`" target="_blank" external rounded-full transition duration-300 border="~ transparent" hover="scale-105 border-primary">
|
2023-01-05 13:03:32 +03:00
|
|
|
<img :src="`/avatars/${team.github}-100x100.png`" :alt="team.display" rounded-full w-15 h-15 height="60" width="60">
|
2023-01-09 16:22:19 +03:00
|
|
|
</NuxtLink>
|
2022-11-24 05:38:14 +03:00
|
|
|
</template>
|
|
|
|
</p>
|
2022-12-20 13:58:50 +03:00
|
|
|
<p italic flex justify-center w-full>
|
2023-01-12 03:39:53 +03:00
|
|
|
<NuxtLink href="https://github.com/sponsors/elk-zone" target="_blank">
|
2023-02-01 20:01:14 +03:00
|
|
|
<span text-xl font-script hover:text-primary transition duration-300>{{ $t('help.footer_team') }}</span>
|
2023-01-12 03:39:53 +03:00
|
|
|
</NuxtLink>
|
2022-11-24 05:38:14 +03:00
|
|
|
</p>
|
2022-11-27 06:13:39 +03:00
|
|
|
|
2022-12-20 00:30:27 +03:00
|
|
|
<button btn-solid mxa tabindex="2" @click="emit('close')">
|
2022-11-29 10:18:28 +03:00
|
|
|
{{ $t('action.enter_app') }}
|
2022-11-27 06:13:39 +03:00
|
|
|
</button>
|
2022-11-24 05:38:14 +03:00
|
|
|
</div>
|
|
|
|
</template>
|