wunphile
Version:
Simple, imperative JavaScript-based static site generator
16 lines (13 loc) • 376 B
JavaScript
import { html } from '../../../../index.mjs'
import { Layout } from '../Layout.mjs'
/** @import { Component } from '../../../../index.mjs' */
/**
* The about page component.
* @type {Component<void, void>}
*/
export const AboutPage = (_) => {
return Layout({ title: 'About', }, html`
<h1>About</h1>
<p>This is a test website to demonstrate Wunphile.</p>
`)
}