mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 03:29:16 +01:00
build: ✨ Add explanations for which apps can be used, add link to registration page in sidebar
This commit is contained in:
parent
a45c04258e
commit
c29cae2955
5 changed files with 98 additions and 37 deletions
|
|
@ -25,7 +25,7 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { Account } from '~/types/mastodon/account';
|
||||
import type { Account } from "~/types/mastodon/account";
|
||||
|
||||
definePageMeta({
|
||||
layout: false,
|
||||
|
|
@ -56,7 +56,7 @@ onMounted(async () => {
|
|||
await loadNext();
|
||||
}
|
||||
});
|
||||
})
|
||||
});
|
||||
|
||||
useServerSeoMeta({
|
||||
title: account.value?.display_name,
|
||||
|
|
|
|||
40
pages/about/apps.vue
Normal file
40
pages/about/apps.vue
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
<template>
|
||||
<div class="px-4 py-20 prose prose-invert mx-auto max-w-md">
|
||||
<h2>Where is the mobile app?</h2>
|
||||
<p>Lysand is compatible with the Mastodon API, meaning it can be used with any Mastodon-compatible client. This
|
||||
includes the official Mastodon app, as well as many third-party clients.</p>
|
||||
<h2>Recommended Clients</h2>
|
||||
<ul class="w-full flex flex-col gap-3 mt-4 not-prose">
|
||||
<li v-for="client of useConfig().RECOMMENDED_CLIENTS" :key="client.name" class="w-full">
|
||||
<a :href="client.link" target="_blank"
|
||||
class="rounded-sm ring-2 ring-white/10 px-4 py-2 w-full flex flex-row gap-3 items-center">
|
||||
<img :src="client.icon" :alt="client.name" class="h-10 w-10" />
|
||||
<div class="flex flex-col justify-between items-start">
|
||||
<h2 class="text-gray-100 font-semibold">{{ client.name }}</h2>
|
||||
<span class="underline text-pink-700">{{ client.link }}</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Many other clients exist, but <strong class="font-bold">they have not been tested for
|
||||
compatibility</strong>. Bug reports are nevertheless welcome.
|
||||
</p>
|
||||
|
||||
<h2>Main Issues</h2>
|
||||
<ul>
|
||||
<li>File uploads are inconsistent and don't work a lot of the time</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Found a problem? Report it on <a href="https://github.com/lysand-org/lysand/issues/new/choose"
|
||||
target="_blank" class="underline text-pink-700">the issue tracker</a>.
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
definePageMeta({
|
||||
layout: "app",
|
||||
});
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue