diff options
Diffstat (limited to 'src/pages/404.page.vue')
-rw-r--r-- | src/pages/404.page.vue | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/pages/404.page.vue b/src/pages/404.page.vue index 293a8f9..2bf49bc 100644 --- a/src/pages/404.page.vue +++ b/src/pages/404.page.vue @@ -1,5 +1,4 @@ <script setup lang="ts"> -import { Coffee } from '@vicons/tabler'; import { useHead } from '@vueuse/head'; useHead({ title: 'Page not found - IT Tools' }); @@ -7,17 +6,19 @@ useHead({ title: 'Page not found - IT Tools' }); <template> <div mt-20 flex flex-col items-center> - <n-icon :component="Coffee" size="100" depth="3" /> + <span text-90px lh-1 op-50> + <icon-mdi:kettle-steam-outline /> + </span> - <n-h1 m-0 mt-3> + <h1 m-0 mt-3> 404 Not Found - </n-h1> - <n-text mt-4 block depth="3"> + </h1> + <div mt-4 op-60> Sorry, this page does not seem to exist - </n-text> - <n-text mb-8 block depth="3"> + </div> + <div mb-8 op-60> Maybe the cache is doing tricky things, try force-refreshing? - </n-text> + </div> <c-button to="/"> Back home |