wunphile
Version:
Simple, imperative JavaScript-based static site generator
16 lines (13 loc) • 389 B
JavaScript
import { html } from '../../../../index.mjs'
import { Layout } from '../Layout.mjs'
/** @import { Component } from '../../../index.mjs' */
/**
* The not found page component.
* @type {Component<void, void>}
*/
export const NotFoundPage = (_) => {
return Layout({ title: 'Not Found' }, html`
<h1>404 Not Found</h1>
<p>The page you were looking for does not exist.</p>
`)
}