feat: page title

This commit is contained in:
2026-04-24 23:43:08 +02:00
parent 8bec21c12d
commit 9bae3a813d
11 changed files with 50 additions and 24 deletions
+16
View File
@@ -0,0 +1,16 @@
<script setup lang="ts">
import { REPOSITORY, NAME, VERSION } from '@/lib/meta'
</script>
<template>
<template v-if="$route.fullPath != '/'">
<RouterLink to="/">Back to home</RouterLink>
</template>
<hr />
<footer>
<small>
{{ new Date().getFullYear() }} - Made with <a :href="REPOSITORY">{{ NAME }}</a>
{{ VERSION }}
</small>
</footer>
</template>