I have a create-react-app project in which I want to link to a pdf file I have saved in my project. I suppose my questions are twofold:
1) I'm not sure where exactly I need to save the PDF file (src folder vs public folder)
2) How do I properly link to the pdf file? Right now I have something like this:
<a href="/portfolio-revamp/public/documents/resume.pdf">Resume</a>
and it's not displaying - it changes the URL but doesn't take you to the PDF.
Any advice greatly appreciated!