diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-08-15 15:29:03 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-08-15 15:29:03 -0400 |
| commit | 66cc6379170876a92074343faf4202fac5d90613 (patch) | |
| tree | 0fa1841ccfcc4612bbbe12036fef743211aea940 | |
| parent | 3a3a2e958dd4cd19d3f7da61aa61f26f3574a905 (diff) | |
| download | personal-website-66cc6379170876a92074343faf4202fac5d90613.tar.gz personal-website-66cc6379170876a92074343faf4202fac5d90613.tar.bz2 personal-website-66cc6379170876a92074343faf4202fac5d90613.zip | |
Added python; Changed footer colour to gray; Added RPi menu
| -rw-r--r-- | components/Footer.vue | 2 | ||||
| -rw-r--r-- | pages/index.vue | 1 | ||||
| -rw-r--r-- | pages/projects/index.vue | 8 |
3 files changed, 10 insertions, 1 deletions
diff --git a/components/Footer.vue b/components/Footer.vue index 19aab10..76e1022 100644 --- a/components/Footer.vue +++ b/components/Footer.vue @@ -1,5 +1,5 @@ <template> - <v-footer class="font-weight-medium" color="green darken-3" dark> + <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> diff --git a/pages/index.vue b/pages/index.vue index 41f2295..d71da56 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -29,6 +29,7 @@ <li>JavaScript</li> <li>HTML</li> <li>Vue</li> + <li>Python</li> </ul> <h1>My favorite games</h1> <ul> diff --git a/pages/projects/index.vue b/pages/projects/index.vue index 3f5d464..d6ecceb 100644 --- a/pages/projects/index.vue +++ b/pages/projects/index.vue @@ -48,6 +48,14 @@ <v-btn text normal target="_blank" href="https://alee14.github.io/weather-website">Website</v-btn> </v-card-actions> </v-card> + <br> + <v-card class="blue darken-4"> + <v-card-title>Raspberry Pi OS Menu</v-card-title> + <v-card-text>A full screen menu. Programmed for the Raspberry Pi.</v-card-text> + <v-card-actions> + <v-btn text normal target="_blank" href="https://github.com/Alee14/RPi-Menu">GitHub</v-btn> + </v-card-actions> + </v-card> </v-col> </v-row> </v-container> |
