2022-04-05 17:40:35 +02:00
|
|
|
<script setup lang="ts">
|
2022-04-19 13:19:44 +02:00
|
|
|
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>
|
2022-04-15 23:10:47 +02:00
|
|
|
<div class="e404-wrapper">
|
2022-07-24 10:38:28 +02:00
|
|
|
<n-result status="404" title="404 Not Found" description="Sorry, this page does not seem to exist">
|
2022-04-15 23:10:47 +02:00
|
|
|
<template #footer>
|
2022-04-22 23:31:40 +02:00
|
|
|
<router-link to="/" #="{ navigate, href }" custom>
|
|
|
|
<n-button tag="a" :href="href" secondary type="success" @click="navigate"> Back home </n-button>
|
2022-04-15 23:10:47 +02:00
|
|
|
</router-link>
|
|
|
|
</template>
|
|
|
|
</n-result>
|
|
|
|
</div>
|
2022-04-05 17:40:35 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.e404-wrapper {
|
2022-04-22 23:31:40 +02:00
|
|
|
padding-top: 150px;
|
2022-04-05 17:40:35 +02:00
|
|
|
}
|
2022-04-22 23:31:40 +02:00
|
|
|
</style>
|