1 2 3 4 5 6 7 8 9
import NextLink from "next/link"; export default function Link({ children, ...pageProps }) { return ( <NextLink {...pageProps} scroll={false}> {children} </NextLink> ) }