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

28 lines
565 B
Vue
Raw Normal View History

2022-04-05 17:40:35 +02:00
<script setup lang="ts">
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>
2023-06-25 15:49:43 +02:00
<span text-90px lh-1 op-50>
<icon-mdi:kettle-steam-outline />
</span>
2023-04-13 00:03:08 +02:00
2023-06-25 15:49:43 +02:00
<h1 m-0 mt-3>
404 Not Found
2023-06-25 15:49:43 +02:00
</h1>
<div mt-4 op-60>
Sorry, this page does not seem to exist
2023-06-25 15:49:43 +02:00
</div>
<div mb-8 op-60>
Maybe the cache is doing tricky things, try force-refreshing?
2023-06-25 15:49:43 +02:00
</div>
2023-04-13 00:03:08 +02:00
<c-button to="/">
Back home
</c-button>
2022-04-15 23:10:47 +02:00
</div>
2022-04-05 17:40:35 +02:00
</template>