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

28 lines
539 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
2023-11-06 18:01:44 -05:00
useHead({ title: 'Dev - 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>
2023-10-22 16:07:43 +08:00
{{ $t('404.notFound') }}
2023-06-25 15:49:43 +02:00
</h1>
<div mt-4 op-60>
2023-10-22 16:07:43 +08:00
{{ $t('404.sorry') }}
2023-06-25 15:49:43 +02:00
</div>
<div mb-8 op-60>
2023-10-22 16:07:43 +08:00
{{ $t('404.maybe') }}
2023-06-25 15:49:43 +02:00
</div>
2023-04-13 00:03:08 +02:00
<c-button to="/">
2023-10-22 16:07:43 +08:00
{{ $t('404.backHome') }}
</c-button>
2022-04-15 23:10:47 +02:00
</div>
2022-04-05 17:40:35 +02:00
</template>