mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-11 21:12:09 +10:00
* feat: add link to drop version in footer * feat: add drop logo aria label * feat: disable all crawling by bots for now i think this is a good default as all of drop is currently behind auth * feat: hide logo when inside wordmark for aria * docs: update readme and contributing * feat: default page in setup wizzard is img * ci: remove redundant perm in release ci * docs: update translation links and add progress image * fix: lang selector using wrong weblate link
26 lines
636 B
Vue
26 lines
636 B
Vue
<template>
|
|
<div>
|
|
<LanguageSelectorListbox />
|
|
<NuxtLink
|
|
class="mt-1 transition text-blue-500 hover:text-blue-600 text-sm"
|
|
to="https://translate.droposs.org/engage/drop/"
|
|
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>
|
|
|
|
<DevOnly
|
|
><h1 class="mt-3 text-sm text-gray-500">{{ $t("welcome") }}</h1>
|
|
</DevOnly>
|
|
</div>
|
|
</template>
|