Describe the bug
On the Portfolio page (views/portfolio.ejs), the "Download RESUME" button has a href="#" link. Clicking it does not download a resume or link to any document, causing the page to jump back to the top instead.
To Reproduce
- Navigate to the
/portfolio page.
- Scroll to the bottom of the page.
- Click the Download RESUME button.
- The page scrolls back to the top and the URL changes to
/portfolio#.
Expected behavior
The button should trigger a download of a resume PDF/document, or point to a valid portfolio file.
Proposed Solution
- Place a placeholder PDF (e.g.
resume-placeholder.pdf) in the /public/ directory.
- Update the anchor tag in
views/portfolio.ejs to link to it:
<a href="/resume-placeholder.pdf" class="btn" download>Download RESUME</a>
Describe the bug
On the Portfolio page (
views/portfolio.ejs), the "Download RESUME" button has ahref="#"link. Clicking it does not download a resume or link to any document, causing the page to jump back to the top instead.To Reproduce
/portfoliopage./portfolio#.Expected behavior
The button should trigger a download of a resume PDF/document, or point to a valid portfolio file.
Proposed Solution
resume-placeholder.pdf) in the/public/directory.views/portfolio.ejsto link to it: