diff --git a/components/FooterApp.vue b/components/FooterApp.vue
new file mode 100644
index 0000000..299cea1
--- /dev/null
+++ b/components/FooterApp.vue
@@ -0,0 +1,9 @@
+
+
+
+
+ © {{ new Date().getFullYear() }}
+
+
+
+
\ No newline at end of file
diff --git a/layouts/default.vue b/layouts/default.vue
index 0a6cdef..fa26e4b 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -1,18 +1,21 @@
-
+
+
+
-
+
+ mdi-theme-light-dark
+
+
mdi-logout-variant
-
- © {{ new Date().getFullYear() }}
-
+
@@ -34,6 +37,9 @@ export default {
}
},
methods: {
+ toggleNavDrawer () {
+ this.$refs.navDrawer.toggle()
+ },
logout () {
signOut(this.$auth).then(() => {
// Sign-out successful
diff --git a/layouts/empty.vue b/layouts/empty.vue
index e8c7b48..8878477 100644
--- a/layouts/empty.vue
+++ b/layouts/empty.vue
@@ -3,6 +3,8 @@
+
+
diff --git a/layouts/error.vue b/layouts/error.vue
index 6834bd8..ab865f7 100644
--- a/layouts/error.vue
+++ b/layouts/error.vue
@@ -7,6 +7,7 @@
{{ otherError }}
Home page
+
diff --git a/layouts/unverified.vue b/layouts/unverified.vue
index 472e428..23d0f87 100644
--- a/layouts/unverified.vue
+++ b/layouts/unverified.vue
@@ -18,6 +18,7 @@
+
diff --git a/pages/dashboard.vue b/pages/dashboard.vue
index 2859d42..9706ba3 100644
--- a/pages/dashboard.vue
+++ b/pages/dashboard.vue
@@ -6,16 +6,6 @@
{{ id.toUpperCase() }} - {{ course.name }}
-
-
- “First, solve the problem. Then, write the code.”
-
-
-
diff --git a/pages/login.vue b/pages/login.vue
index 927748f..4a9febf 100644
--- a/pages/login.vue
+++ b/pages/login.vue
@@ -128,6 +128,7 @@ import {
export default {
name: 'LoginPage',
+ layout: 'empty',
data () {
return {
existingUser: true,