How can I get (query string) parameters from the URL in Next.js?

Use router-hook. You can use the useRouter hook in any component in your application. https://nextjs.org/docs/api-reference/next/router#userouter pass Param import Link from “next/link”; <Link href={{ pathname: ‘/search’, query: { keyword: ‘this way’ } }}><a>path</a></Link> Or import Router from ‘next/router’ Router.push({ pathname: ‘/search’, query: { keyword: ‘this way’ }, }) In Component import { useRouter } from ‘next/router’ … Read more