Add PDF download functionality to landing page #1419
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add PDF download functionality to landing page
Summary
Added a "Download PDF" button to the documentation landing page (buildwithfern.com/learn/home) that allows users to save the page as a PDF using their browser's print dialog. The implementation includes:
pdf-download.jsscript that dynamically adds a download button to the hero section/homeroute as requestedThe solution uses the browser's native
window.print()API, which opens the print dialog where users can select "Save as PDF" as the destination.Review & Testing Checklist for Human
This PR has moderate risk due to limited automated testing capabilities. Please verify:
Notes
/homeroute to keep the initial rollout containedaddPdfDownloadButton()Link to Devin run: https://app.devin.ai/sessions/0b901c6bca8e4a429dc8f15595515048
Requested by: Deep Singhvi (@dsinghvi)