Using the the Link component from next/link.
In my own case, I had to put the pdf file in an public/assets folder.
Adding the target="_blank" will download the file.
<Link
href={"./assets/my_resume.pdf"}
download>
Resume
</Link>