i am currently working on next j s routing and i am passing multiple parameters in URL and i want hide those parameters and just want to show some text
i am passing parameters in router as
Router.push({path name:"/Home/about/"+id +"/"+name+"/"+age});
and i have tried to implement it as
router.push("/Home/about/" +id +"/" + name+ "/" +age, '/Home/about/'+name, { shallow: true })
but it not working and my page is
-Home
-about
-[...index].j s
-index.j s
i am not getting where i am doing mistake,thanks in advance