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