2023-09-14 22:30:20 +12:00
|
|
|
<script>
|
2025-06-20 23:26:06 +12:00
|
|
|
import About from "../components/AppAbout.vue";
|
|
|
|
|
import CommonMixins from "../mixins/CommonMixins";
|
2023-09-22 15:06:03 +12:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
2025-06-20 23:26:06 +12:00
|
|
|
About,
|
2023-09-22 15:06:03 +12:00
|
|
|
},
|
2025-06-20 23:26:06 +12:00
|
|
|
|
|
|
|
|
mixins: [CommonMixins],
|
|
|
|
|
};
|
2023-09-14 22:30:20 +12:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-09-22 15:06:03 +12:00
|
|
|
<div class="h-100 bg-primary d-flex align-items-center justify-content-center my-2 text-white">
|
|
|
|
|
<div class="d-block text-center">
|
|
|
|
|
<RouterLink to="/" class="text-white">
|
2025-06-20 23:26:06 +12:00
|
|
|
<img :src="resolve('/mailpit.svg')" alt="Mailpit" style="max-width: 80%; width: 100px" />
|
2023-09-22 15:06:03 +12:00
|
|
|
<p class="h2 my-3">Page not found</p>
|
|
|
|
|
|
|
|
|
|
<p>Click here to continue</p>
|
|
|
|
|
</RouterLink>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="d-none">
|
2025-06-20 23:26:06 +12:00
|
|
|
<About />
|
2023-09-22 15:06:03 +12:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-09-14 22:30:20 +12:00
|
|
|
</template>
|