Moved the footer into self contained component

This commit is contained in:
Liviu Burcusel 2025-09-16 14:26:10 +02:00
parent c20396b75e
commit 8910613676
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
3 changed files with 65 additions and 14 deletions

View file

@ -1,6 +1,7 @@
<script setup lang="ts">
import { RouterView } from "vue-router";
import HeaderNavBar from "./components/HeaderNavBar.vue";
import FooterComponent from "./components/FooterComponent.vue";
</script>
<template>
@ -13,24 +14,12 @@ import HeaderNavBar from "./components/HeaderNavBar.vue";
</v-container>
</v-main>
<v-footer class="d-flex flex-column">
<div class="d-flex w-100 align-left px-4 py-2">
Dexie.js - A Minimalistic Wrapper for IndexedDB
</div>
<v-divider thickness="2" width="100%"></v-divider>
<div class="px-4 py-2 align-left w-100">
&copy; 2014-2024
<a href="https://dexie.org/" target="_blank" rel="noopener">
<v-btn variant="outlined" color="primary">Dexie.js</v-btn>
</a>
is the creation of David Fahlander and managed by Awarica AB.
</div>
</v-footer>
<FooterComponent />
</v-app>
</template>
<style lang="scss" scoped>
.fill-height {
min-height: calc(100vh - 180px);
min-height: calc(100vh - 160px);
}
</style>

View file

@ -0,0 +1,11 @@
<template>
<v-footer class="d-flex flex-column">
<div class="d-flex w-100 align-left px-4 py-2">
YDIOY - Your Data Is Only Yours
</div>
<v-divider thickness="2" width="100%"></v-divider>
<div class="px-4 py-2 align-left w-100">
&copy; 2025
</div>
</v-footer>
</template>