2023-09-14 22:30:20 +12:00
|
|
|
<script>
|
2023-09-22 15:06:03 +12:00
|
|
|
import AboutMailpit from '../components/AboutMailpit.vue'
|
|
|
|
import CommonMixins from '../mixins/CommonMixins'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mixins: [CommonMixins],
|
|
|
|
|
|
|
|
components: {
|
|
|
|
AboutMailpit,
|
|
|
|
},
|
|
|
|
}
|
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">
|
|
|
|
<img :src="resolve('/mailpit.svg')" alt="Mailpit" style="max-width:80%; width: 100px;">
|
|
|
|
<p class="h2 my-3">Page not found</p>
|
|
|
|
|
|
|
|
<p>Click here to continue</p>
|
|
|
|
</RouterLink>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="d-none">
|
|
|
|
<AboutMailpit />
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-14 22:30:20 +12:00
|
|
|
</template>
|