diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-08-16 20:13:35 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-08-16 20:13:35 -0400 |
| commit | f8f2873ce964e23d76a663a67e3c267680d834ef (patch) | |
| tree | 14e07c2e92104a6af9ce3d19cdffb3486d105eca /components | |
| parent | 6455accfecd927587af29423d1a7e9a09550b8b0 (diff) | |
| download | personal-website-f8f2873ce964e23d76a663a67e3c267680d834ef.tar.gz personal-website-f8f2873ce964e23d76a663a67e3c267680d834ef.tar.bz2 personal-website-f8f2873ce964e23d76a663a67e3c267680d834ef.zip | |
Moved the credits from footer to home page
Diffstat (limited to 'components')
| -rw-r--r-- | components/Footer.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/Footer.vue b/components/Footer.vue index 76e1022..8c6d144 100644 --- a/components/Footer.vue +++ b/components/Footer.vue @@ -1,11 +1,11 @@ <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">© Copyright 2018-{{ new Date().getFullYear() }} Andrew Lee. All rights reserved.</p> - </v-col> - </v-footer> + <div> + <v-footer class="font-weight-medium" color="gray darken-3" dark> + <v-col cols="12"> + <p class="text-center">© Copyright 2018-{{ new Date().getFullYear() }} Andrew Lee. All rights reserved.</p> + </v-col> + </v-footer> + </div> </template> <script> |
