przy kliknięciu przycisk Zmień trasę Dalej JS
import Router from 'next/router'
componentDidMount(){
const {pathname} = Router
if(pathname == '/' ){
Router.push('/hello-nextjs')
}
}
Grieving Gharial