aboutsummaryrefslogtreecommitdiff
path: root/components/Footer.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/Footer.vue')
-rw-r--r--components/Footer.vue18
1 files changed, 11 insertions, 7 deletions
diff --git a/components/Footer.vue b/components/Footer.vue
index 616c8d2..a2b514e 100644
--- a/components/Footer.vue
+++ b/components/Footer.vue
@@ -1,15 +1,19 @@
<template>
- <div>
- <p>&copy; Copyright 2018-2020, Andrew Lee.</p>
- </div>
+ <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"
- }
+export default {
+ name: 'Footer'
+}
</script>
<style scoped>
-</style> \ No newline at end of file
+</style>