Initial Commit
ci / ci (22, ubuntu-latest) (push) Failing after 8m9s

This commit is contained in:
2026-03-30 02:18:38 +01:00
commit 1bfc6fbaa8
63 changed files with 15756 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<script setup lang="ts">
const { footer } = useAppConfig()
</script>
<template>
<UFooter
class="z-10 bg-default"
:ui="{ left: 'text-muted text-xs' }"
>
<template #left>
{{ footer.credits }}
</template>
<template #right>
<template v-if="footer?.links">
<UButton
v-for="(link, index) of footer?.links"
:key="index"
v-bind="{ size: 'xs', color: 'neutral', variant: 'ghost', ...link }"
/>
</template>
</template>
</UFooter>
</template>