fix(docs): clean up AI slop in GitHub Pages website#2
Merged
Conversation
Remove unused CSS variables, consolidate overengineered gradients, tighten marketing copy, add aria-labels to external links, and promote hardcoded colors to :root variables. Co-Authored-By: Claude Opus 4.6 <[email protected]>
There was a problem hiding this comment.
Pull request overview
This PR cleans up the GitHub Pages website by removing unused CSS variables, consolidating gradients, tightening marketing copy, and promoting hardcoded colors to CSS variables. While the title mentions "AI slop", the changes focus on simplifying the website's code and content.
Changes:
- Removed unused CSS variables (
--bg-soft,--panel) and simplified the body background from 3 layered gradients to 1 - Promoted hardcoded colors in
.btn-primaryto CSS variables (--accent-warm,--accent-dark) - Tightened marketing copy by removing redundant words and changing descriptors
- Added aria-labels to all external links (though this introduces accessibility issues)
- Removed redundant descriptive text from the Release Demo section
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| docs/styles.css | Removed 2 unused CSS variables, added 2 new variables for button colors, simplified body background gradient from 3 layers to 1 |
| docs/index.html | Added aria-labels to external links, tightened meta description and marketing copy, removed redundant paragraph |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Owner
Author
|
@copilot open a new pull request to apply changes based on the comments in this thread |
Modern screen readers already announce target="_blank" links as opening in a new tab. The aria-label duplicated visible link text and could override it for assistive technology users. Addresses Copilot review on PR #2. Co-Authored-By: Claude Opus 4.6 <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
--bg-soft,--panel) from:root.btn-primaryto:rootvariables (--accent-warm,--accent-dark)aria-label="... (opens in new tab)"to all 5 external linksTest plan
🤖 Generated with Claude Code