blob: 1890e085f9c6c98c9f02847659a2c09a1f8de158 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<template>
<v-footer class="font-weight-medium" color="green darken-3" dark>
<v-col cols="12">
<p class="text-center">Website is licensed under GPL-3.0.</p>
<p class="text-center">Created using Vue.JS + NuxtJS and Vuetify. Hosted on Netlify.</p>
<p class="text-center">© Copyright 2018-{{ new Date().getFullYear() }}, Andrew Lee. All rights reserved.</p>
</v-col>
</v-footer>
</template>
<script>
export default {
name: 'Footer'
}
</script>
<style scoped>
</style>
|