aboutsummaryrefslogtreecommitdiff
path: root/layouts/error.vue
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/error.vue')
-rw-r--r--layouts/error.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/error.vue b/layouts/error.vue
index 27b44b9..d204d97 100644
--- a/layouts/error.vue
+++ b/layouts/error.vue
@@ -1,9 +1,9 @@
<template>
<v-container>
- <h1 v-if="error.statusCode = 404">404 Error</h1>
+ <h1 v-if="error.statusCode = 404" class="display-3 text-center">404 Error</h1>
<h1 v-else>An error occurred</h1>
- <p>Hmm. Seems like this page either didn't exist...</p>
- <nuxt-link to="/">Home page</nuxt-link>
+ <p class="text-center display-1">Hmm. Seems like this page either didn't exist or something went wrong...</p>
+ <p class="text-center display-1"><nuxt-link to="/">Home</nuxt-link></p>
</v-container>
</template>