import Link from 'next/link' export default () => ( <div id="about-page"> <p>This is the about page</p> <Link href="/">Go Back</Link> </div> )