mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
22 lines
441 B
Vue
22 lines
441 B
Vue
<template>
|
|
<div class="error-page-component">
|
|
<h1>Page Not Found</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BasePageMixin from "mixins/base-page.js";
|
|
|
|
export default {
|
|
mixins: [
|
|
BasePageMixin
|
|
],
|
|
|
|
data() {
|
|
return {
|
|
metaTitle: "Page Not Found",
|
|
metaDescription: "The requested page cannot be found"
|
|
};
|
|
}
|
|
};
|
|
</script>
|