import Link from 'next/link'
<Link href="/about"><a>About Us</a></Link>
import Router from 'next/router'
const handleLink = (path) => {
Router.push(path)
}
export default () => (
<button onClick={ ()=>handleLink('/about') }>Aboutページへ</button>
)