aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-08-16 20:13:35 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-08-16 20:13:35 -0400
commitf8f2873ce964e23d76a663a67e3c267680d834ef (patch)
tree14e07c2e92104a6af9ce3d19cdffb3486d105eca
parent6455accfecd927587af29423d1a7e9a09550b8b0 (diff)
downloadpersonal-website-f8f2873ce964e23d76a663a67e3c267680d834ef.tar.gz
personal-website-f8f2873ce964e23d76a663a67e3c267680d834ef.tar.bz2
personal-website-f8f2873ce964e23d76a663a67e3c267680d834ef.zip
Moved the credits from footer to home page
-rw-r--r--components/Footer.vue14
-rw-r--r--pages/index.vue5
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">&copy; 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">&copy; 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>