En el botón Haga clic en la ruta de cambio de la siguiente JS

import Router from 'next/router'

componentDidMount(){
    const {pathname} = Router
    if(pathname == '/' ){
       Router.push('/hello-nextjs')
    }
}
Grieving Gharial