2020-07-19 15:17:26 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-07-19 17:29:07 +00:00
|
|
|
<h1 class="mb-5">404 Error.</h1>
|
2020-07-19 15:17:26 +00:00
|
|
|
<p class="h4">Ahhhhhhhh! The page you are looking for does not exist.</p>
|
2021-11-14 10:11:52 +00:00
|
|
|
<p>
|
|
|
|
Don't worry, you can head back to
|
|
|
|
<router-link to="/"> <span>the main page</span> </router-link>.
|
|
|
|
</p>
|
2020-07-19 15:17:26 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-04-17 08:02:29 +00:00
|
|
|
import { defineComponent } from '@vue/composition-api';
|
2020-10-25 09:35:19 +00:00
|
|
|
|
2022-04-17 08:02:29 +00:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'Error404',
|
|
|
|
});
|
2020-07-19 15:17:26 +00:00
|
|
|
</script>
|
|
|
|
|
2020-07-26 08:48:07 +00:00
|
|
|
<style scoped></style>
|