2021-12-30 22:40:57 +00:00
|
|
|
import {Component, html} from 'htm/preact';
|
|
|
|
|
|
|
|
import SharedFooter from '../components/shared-footer.js';
|
|
|
|
|
|
|
|
export default class NotFoundPage extends Component {
|
|
|
|
render() {
|
|
|
|
document.title = 'Page Not Found';
|
|
|
|
|
|
|
|
return html`
|
|
|
|
<div class="not-found-page">
|
|
|
|
<main>
|
|
|
|
<h1>Page Not Found</h1>
|
|
|
|
<a href="/">← Home</a>
|
|
|
|
</main>
|
|
|
|
|
2022-01-16 12:30:41 +00:00
|
|
|
<${SharedFooter} page="not-found" />
|
2021-12-30 22:40:57 +00:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|