diff options
| -rw-r--r-- | components/Footer.vue | 14 | ||||
| -rw-r--r-- | pages/index.vue | 5 |
2 files changed, 12 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> diff --git a/pages/index.vue b/pages/index.vue index 2fec629..cc2bd87 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -108,6 +108,11 @@ </tbody> </v-simple-table> </div> + <div class="credits"> + <h1>Credits</h1> + <p>Website is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL-3.0</a>.</p> + <p>Created using <a href="https://vuejs.org">Vue.JS</a>, <a href="https://nuxtjs.org">NuxtJS</a> and <a href="https://vuetifyjs.com">Vuetify</a>. Hosted on <a href="https://netlify.com">Netlify</a>.</p> + </div> <div class="contact"> <h1>Contact Me</h1> <p>If you want to ask me questions or just want to contact me. Contact me at <a href="mailto:andrew@alee14.me">andrew@alee14.me</a>.</p> |
