Files
web/src/components/Footer.vue
2024-04-24 14:24:00 -04:00

26 lines
582 B
Vue

<template>
<v-footer class="text-center d-flex flex-column mb-12" location="bottom">
<social/>
<div class="text-grey logo" style="font-size: small; margin-bottom: 0;">dexorder</div>
<div class="text-grey" style="font-size: x-small">&copy;{{ new Date().getFullYear() }}</div>
</v-footer>
</template>
<script setup>
import {useStore} from "@/store/store";
import Social from "@/components/Social.vue";
const s = useStore()
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
.v-btn {
margin: 0 1em 0 1em;
}
.footer {
font-size: small;
}
</style>