it-tools/src/pages/404.page.vue

21 lines
686 B
Vue
Raw Normal View History

2022-04-05 17:40:35 +02:00
<script setup lang="ts">
2023-04-13 00:03:08 +02:00
import { Coffee } from '@vicons/tabler';
import { useHead } from '@vueuse/head';
2022-04-05 17:40:35 +02:00
2022-04-22 23:31:40 +02:00
useHead({ title: 'Page not found - IT Tools' });
2022-04-05 17:40:35 +02:00
</script>
<template>
2023-04-13 00:03:08 +02:00
<div mt-20 flex flex-col items-center>
<n-icon :component="Coffee" size="100" depth="3" />
<n-h1 m-0 mt-3>404 Not Found</n-h1>
<n-text mt-4 block depth="3">Sorry, this page does not seem to exist</n-text>
<n-text mb-8 block depth="3">Maybe the cache is doing tricky things, try force-refreshing?</n-text>
<router-link to="/" #="{ navigate, href }" custom>
<n-button tag="a" :href="href" secondary @click="navigate"> Back home </n-button>
</router-link>
2022-04-15 23:10:47 +02:00
</div>
2022-04-05 17:40:35 +02:00
</template>