2025-06-08 10:33:41 +10:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2026-01-13 15:32:39 +11:00
|
|
|
<SelectorLanguageListbox />
|
2025-06-08 10:33:41 +10:00
|
|
|
<NuxtLink
|
|
|
|
|
class="mt-1 transition text-blue-500 hover:text-blue-600 text-sm"
|
2025-08-04 02:30:22 -04:00
|
|
|
to="https://translate.droposs.org/engage/drop/"
|
2025-06-08 10:33:41 +10:00
|
|
|
target="_blank"
|
|
|
|
|
>
|
|
|
|
|
<i18n-t
|
|
|
|
|
keypath="helpUsTranslate"
|
|
|
|
|
tag="span"
|
|
|
|
|
scope="global"
|
|
|
|
|
class="inline-flex items-center gap-x-1 hover:underline"
|
|
|
|
|
>
|
|
|
|
|
<template #arrow>
|
|
|
|
|
<ArrowTopRightOnSquareIcon class="size-4" />
|
|
|
|
|
</template>
|
|
|
|
|
</i18n-t>
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
|
2025-08-15 22:57:56 +10:00
|
|
|
<DevOnly>
|
|
|
|
|
<h1 class="mt-3 text-sm text-gray-500">{{ $t("welcome") }}</h1>
|
2025-06-08 10:33:41 +10:00
|
|
|
</DevOnly>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2025-08-15 22:57:56 +10:00
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ArrowTopRightOnSquareIcon } from "@heroicons/vue/24/outline";
|
|
|
|
|
</script>
|