mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 07:21:20 +00:00
12 lines
330 B
Svelte
12 lines
330 B
Svelte
<script lang="ts">
|
|
import { siteConfig } from '$lib/config/site';
|
|
</script>
|
|
|
|
<footer class="container py-6">
|
|
<div class="space-y-1">
|
|
<p class="text-center text-sm text-muted-foreground">
|
|
© {new Date().getFullYear()} — {siteConfig.name} by {siteConfig.author}. Licensed
|
|
under GPL-3.0.
|
|
</p>
|
|
</div>
|
|
</footer>
|