Add 'Featured On' section and update navigation in Docusaurus config#61
Add 'Featured On' section and update navigation in Docusaurus config#61
Conversation
…fig; adjust HOURS_INCREMENT in CostSavings component
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #61 +/- ##
==========================================
+ Coverage 92.41% 92.49% +0.08%
==========================================
Files 32 32
Lines 2438 2438
==========================================
+ Hits 2253 2255 +2
+ Misses 115 114 -1
+ Partials 70 69 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Updates the Docusaurus documentation site’s navigation and footer to surface key docs sections and add “Featured On” badges, plus tweaks the homepage cost-savings animation granularity.
Changes:
- Expanded footer “Docs” links to include What’s New, Usage, Features, Examples, and References.
- Added external footer links (Product Hunt, Launch Llama) and a new “Featured On” footer column with badge embeds.
- Reduced the homepage
CostSavingsstep size by changingHOURS_INCREMENTfrom 48 to 8.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| site/src/pages/index.tsx | Adjusts the cost-savings calculator’s increment size for a more granular display. |
| site/docusaurus.config.ts | Adds new docs shortcuts, external links, and a “Featured On” footer section with badges. |
| title: 'Featured On', | ||
| items: [ | ||
| { | ||
| html: `<a href="https://launchllama.co?utm_source=badge&utm_medium=referral" target="_blank" rel="noopener noreferrer"><img src="https://speaktechenglish.com/wp-content/uploads/2026/04/Screenshot_2026-04-09_at_17.40.44-removebg-preview.png" alt="Featured on Launch Llama" width="200" height="50" /></a>`, |
There was a problem hiding this comment.
The Launch Llama badge link points to launchllama.co while the "More" footer link points to tools.launchllama.co/products/raid. If the intent is to drive to the Raid product listing, the badge should likely link to the same product URL to avoid confusing redirects and inconsistent analytics.
| html: `<a href="https://launchllama.co?utm_source=badge&utm_medium=referral" target="_blank" rel="noopener noreferrer"><img src="https://speaktechenglish.com/wp-content/uploads/2026/04/Screenshot_2026-04-09_at_17.40.44-removebg-preview.png" alt="Featured on Launch Llama" width="200" height="50" /></a>`, | |
| html: `<a href="https://tools.launchllama.co/products/raid" target="_blank" rel="noopener noreferrer"><img src="https://speaktechenglish.com/wp-content/uploads/2026/04/Screenshot_2026-04-09_at_17.40.44-removebg-preview.png" alt="Featured on Launch Llama" width="200" height="50" /></a>`, |
| title: 'Featured On', | ||
| items: [ | ||
| { | ||
| html: `<a href="https://launchllama.co?utm_source=badge&utm_medium=referral" target="_blank" rel="noopener noreferrer"><img src="https://speaktechenglish.com/wp-content/uploads/2026/04/Screenshot_2026-04-09_at_17.40.44-removebg-preview.png" alt="Featured on Launch Llama" width="200" height="50" /></a>`, |
There was a problem hiding this comment.
The Launch Llama badge hotlinks an image from a third-party WordPress domain. This is brittle (can break unexpectedly), adds an external dependency/trackable request, and may raise licensing/branding concerns. Prefer adding the badge image to site/static/img (or using an official Launch Llama-hosted badge asset) and referencing it locally.
| html: `<a href="https://launchllama.co?utm_source=badge&utm_medium=referral" target="_blank" rel="noopener noreferrer"><img src="https://speaktechenglish.com/wp-content/uploads/2026/04/Screenshot_2026-04-09_at_17.40.44-removebg-preview.png" alt="Featured on Launch Llama" width="200" height="50" /></a>`, | |
| html: `<a href="https://launchllama.co?utm_source=badge&utm_medium=referral" target="_blank" rel="noopener noreferrer" aria-label="Featured on Launch Llama" style="display:inline-flex;align-items:center;justify-content:center;width:200px;min-height:50px;padding:0 12px;border:1px solid #3a3a3a;border-radius:8px;background:#111;color:#fff;font-weight:600;text-decoration:none;">Featured on Launch Llama</a>`, |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This pull request updates the documentation site navigation and homepage experience by expanding the docs menu, adding new external links and featured badges, and adjusting the cost savings calculator. The main changes are as follows:
Documentation Navigation Improvements:
Footer and External Links:
Homepage Experience:
HOURS_INCREMENTconstant in theCostSavingscomponent from 48 to 8, making the cost savings calculator more granular and user-friendly.