aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-10-11 16:53:57 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-10-11 16:53:57 -0400
commit16097e4fd0d87a45820aa578eea232b3336d166f (patch)
treee50c4bfe5d1ee85ba9abc80b3bf84fa557116ef7 /layouts
parente843b8e40b01026a4d9a738b5321b6850f9e3573 (diff)
downloadchine-projet-16097e4fd0d87a45820aa578eea232b3336d166f.tar.gz
chine-projet-16097e4fd0d87a45820aa578eea232b3336d166f.tar.bz2
chine-projet-16097e4fd0d87a45820aa578eea232b3336d166f.zip
Major changes
Diffstat (limited to 'layouts')
-rw-r--r--layouts/default.vue43
1 files changed, 19 insertions, 24 deletions
diff --git a/layouts/default.vue b/layouts/default.vue
index b3903ce..1ccfcd7 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -2,10 +2,25 @@
<v-app dark>
<v-main>
<v-container>
- <audio autoplay="autoplay">
- <source src="HKT4_Track05.mp3" />
- </audio>
<nuxt />
+ <footer>
+ <v-row align="center" justify="center">
+ <v-col>
+ <nuxt-link to="about">A propos</nuxt-link>
+ <p>
+ Propulsé par NuxtJS. Sous licence
+ <a href="https://www.gnu.org/licenses/gpl-3.0.en.html"
+ >GNU General Public License 3.0</a
+ >.
+ <br />
+ <a href="https://github.com/Alee14/chine-projet/">
+ La code source pour cette projet.</a
+ >
+ </p>
+ <p>&copy; Droits d'Auteur 2020 Andrew Lee.</p>
+ </v-col>
+ </v-row>
+ </footer>
</v-container>
</v-main>
</v-app>
@@ -14,27 +29,7 @@
<script>
export default {
data() {
- return {
- clipped: false,
- drawer: false,
- fixed: false,
- items: [
- {
- icon: 'mdi-apps',
- title: 'Welcome',
- to: '/',
- },
- {
- icon: 'mdi-chart-bubble',
- title: 'Inspire',
- to: '/inspire',
- },
- ],
- miniVariant: false,
- right: true,
- rightDrawer: false,
- title: 'Vuetify.js',
- }
+ return {}
},
}
</script>