how to pass data from one page to another page in Next.js?

You can pass data to another page via Link component this way: import Link from ‘next/link’ <Link href={{ pathname: ‘/to-your-other-page’, query: data // the data }} > <a>Some text</a> </Link> and then receive that data in your other page using router: import { useRouter } from ‘next/router’ const router = useRouter(); const data = router.query; … Read more

tech