const h = require('vhtml') const html = require('htm').bind(h) import Layout from '../layout' import Person from '../components/person' const AboutPage = ({message}) => { return html` <${Layout}> <${Person} name="Brandon" age="36">
${message}
` } AboutPage.getInitialProps = async function () { return { title: 'About Us', message: 'Learn about me!' } } export default AboutPage