import Head from "next/head"; export default function About() { return ( <> <Head> <title>About</title> </Head> <div> <h1>This is the About page</h1> </div> </> ); }