Version Info in Footer; Various formatting fixes; Removed WS debugging; Removed Gitlab from Services

This commit is contained in:
Neshura 2024-07-31 22:31:52 +02:00
parent 8392c7885d
commit 6ac9e68827
Signed by: Neshura
GPG key ID: 4E2D47B1374C297D
8 changed files with 30 additions and 40 deletions
src/routes

15
src/routes/Footer.svelte Normal file
View file

@ -0,0 +1,15 @@
<script lang="ts">
import { version } from '$app/environment';
</script>
<div class="absolute bottom-0 flex z-50 h-8 w-full flex-row items-center gap-3 border-t bg-black/40 backdrop-blur-sm">
<p class="px-4">
Version:
<a
href="https://forgejo.neshweb.net/Neshweb-Sites/main-site/releases/tag/{version}"
class="hover:underline text-secondary"
>
{version}
</a>
</p>
</div>