aboutsummaryrefslogtreecommitdiff
path: root/components/Footer.vue
blob: 76e10220a185c60623c6ca9d1f0cc1da69d557e3 (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="gray 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">&copy; 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>