Initial Version

This commit is contained in:
root
2025-12-21 10:09:54 -05:00
commit 4ae6befc7b
422 changed files with 47225 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<script setup lang="ts">
import { shallowRef } from 'vue';
const footerLink = shallowRef([
{
title: 'About us'
},
{
title: 'Privacy'
},
{
title: 'Terms'
}
]);
</script>
<template>
<v-footer class="px-0 footer">
<v-row justify="center" no-gutters>
<v-col cols="6">
<p class="text-caption mb-0">© All rights reserved</p>
</v-col>
<v-col class="text-right" cols="6">
<a v-for="(item, i) in footerLink" :key="i" class="mx-2 text-caption text-darkText" href="/">
{{ item.title }}
</a>
</v-col>
</v-row>
</v-footer>
</template>