feat: Added Footer
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-03-23 22:26:05 +01:00
parent 3e58347acb
commit 041232bcae
4 changed files with 38 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
<script setup lang="ts">
const config = useRuntimeConfig()
</script>
<template>
<div>
<UDivider />
<UFooter c>
<template #left>
<div class="text-xs">
Copyright © {{ new Date().getFullYear() }}
</div>
</template>
<template #center>
Made with by <a class="text-primary hover:text-primary-600 ml-1" href="https://flycro.me" target="_blank">Flycro</a>
</template>
<template #right>
<div class="font-mono text-xs">
{{ config.public.packageVersion }} - {{ config.public.gitHash }}
</div>
</template>
</UFooter>
</div>
</template>