aboutsummaryrefslogtreecommitdiff
path: root/components/Footer.vue
blob: a2b514e7dcb6eadc7673d6ebef5631abbfea9714 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
    <v-footer app class="font-weight-medium" color="green darken-3" dark>
        <v-col cols="12">
            <p class="text-center">Created using NuxtJS and Vuetify. Hosted on Netlify.</p>
            <p class="text-center"><strong>&copy; Copyright 2018-{{ new Date().getFullYear() }}, Andrew Lee.</strong>
            </p>
        </v-col>
    </v-footer>
</template>

<script>
export default {
  name: 'Footer'
}
</script>

<style scoped>

</style>