Page Route UseRoute

import { useRouter } from 'next/router'
 
function QuestionPage() {
  const {
    asPath,        // the value: "/question/how-do-you-get-the-current-url-in-nextjs/"
    pathname,   // the value: "/question/[slug]"
  } = useRouter();
 
  return <h1>The Page</h1>
}