import Head from 'next/head' export default () => ( <div id="page-with-h1-and-title"> <Head> <title>Another Page's Title</title> </Head> <h1>My heading</h1> <div>Extraneous stuff</div> </div> )