Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions lightly_studio_view/src/lib/components/Footer/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts">
import { BookOpen, Mail } from '@lucide/svelte';
import { page } from '$app/state';
import version from '$lib/version.json';
import { isAnnotationsRoute } from '$lib/routes';

type FooterProps = {
Expand Down Expand Up @@ -33,16 +34,16 @@
});
</script>

<div class="mt-3 border-t border-border-hard bg-card px-6 py-1.5 text-sm">
<div class="border-border-hard bg-card mt-3 border-t px-6 py-1.5 text-sm">
<div class="mx-auto flex items-center justify-between gap-5">
<div class="flex items-center gap-2">
{#if statsText}
<span class="font-medium text-foreground">{statsText}</span>
<span class="text-foreground font-medium">{statsText}</span>
{/if}
</div>
<div class="flex items-center gap-2">
<a
class="flex items-center gap-2 text-foreground/80 transition-colors hover:text-foreground"
class="text-foreground/80 hover:text-foreground flex items-center gap-2 transition-colors"
href="https://www.lightly.ai/contact"
>
<Mail class="size-4" />
Expand All @@ -51,7 +52,7 @@
</div>
<div class="flex items-center gap-2">
<a
class="flex items-center gap-2 text-foreground/80 transition-colors hover:text-foreground"
class="text-foreground/80 hover:text-foreground flex items-center gap-2 transition-colors"
href="https://docs.lightly.ai/studio/"
target="_blank"
rel="noreferrer"
Expand All @@ -60,5 +61,8 @@
<span>Docs</span>
</a>
</div>
<div>
version: {version.version}
</div>
</div>
</div>
3 changes: 3 additions & 0 deletions lightly_studio_view/src/lib/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"version": "1.8.0"
}
Loading