diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-30 15:01:40 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-30 15:01:40 -0400 |
| commit | 848f1ca425e03cdcf7503ab51d80711bbf28c0f2 (patch) | |
| tree | c008b954d10a7318933138c8ea45804eb33ba825 /components | |
| parent | 37522c3ce749f6582c47e892c935297220e926dc (diff) | |
| download | personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.gz personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.bz2 personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.zip | |
Major changes in home page, added stuff on other pages and favicon
Diffstat (limited to 'components')
| -rw-r--r-- | components/Footer.vue | 8 | ||||
| -rw-r--r-- | components/Navbar.vue | 15 |
2 files changed, 17 insertions, 6 deletions
diff --git a/components/Footer.vue b/components/Footer.vue index a2b514e..1890e08 100644 --- a/components/Footer.vue +++ b/components/Footer.vue @@ -1,9 +1,9 @@ <template> - <v-footer app class="font-weight-medium" color="green darken-3" dark> + <v-footer 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>© Copyright 2018-{{ new Date().getFullYear() }}, Andrew Lee.</strong> - </p> + <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> </template> diff --git a/components/Navbar.vue b/components/Navbar.vue index 725a666..6d65501 100644 --- a/components/Navbar.vue +++ b/components/Navbar.vue @@ -12,6 +12,19 @@ <v-btn to="/projects" text> Projects </v-btn> + <v-spacer/> + <v-btn href="https://github.com/Alee14" icon> + <v-icon>mdi-github</v-icon> + </v-btn> + <v-btn href="https://twitter.com/Alee14498" icon> + <v-icon>mdi-twitter</v-icon> + </v-btn> + <v-btn href="https://www.youtube.com/channel/UCNRn4YDPCCWSEl3CT7eWorA" icon> + <v-icon>mdi-youtube</v-icon> + </v-btn> + <v-btn href="https://discord.gg/EFhRDqG" icon> + <v-icon>mdi-discord</v-icon> + </v-btn> </v-toolbar> </v-card> </template> @@ -20,9 +33,7 @@ export default { name: 'Navbar' } - </script> <style scoped> - </style> |
