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