feat: add install script for easy CLI installation#97
Conversation
Add a second command box showing `npm install -g sentry` above the curl install command. Move "Read the docs" link to its own line below both commands. Update CommandBox component to make docsLink optional.
Semver Impact of This PR🟡 Minor (new features) 📋 Changelog PreviewThis is how your changes will appear in the changelog. New Features ✨Issue
Other
Bug Fixes 🐛Issue
Other
Documentation 📚
Internal Changes 🔧
Other
🤖 This preview updates automatically when you update the PR. |
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
|
|
||
| .hero-docs-link:hover svg { | ||
| transform: translateX(2px); | ||
| } |
There was a problem hiding this comment.
Duplicated CSS styles for docs link
Low Severity
The .hero-docs-link styles in custom.css are nearly identical to the existing .docs-link styles in CommandBox.astro. Both define the same display: flex, align-items: center, gap: 0.5rem, color, text-decoration, font-weight, font-size, transition, and hover effects. The only difference is margin-top: 0.5rem. This duplication increases maintenance burden and risks inconsistent styling if one is updated without the other.
Add a second command box showing
npm install -g sentryabove the curl install command. Move "Read the docs" link to its own line below both commands. Update CommandBox component to make docsLink optional.