Sponsor logos - #95
Merged
Merged
Conversation
…e heading to reflect the year 2026.
There was a problem hiding this comment.
Pull request overview
Updates the Home page sponsor section to reflect 2026 sponsors and refresh sponsor branding/visual emphasis, including tiered styling intended to improve presentation (notably on mobile).
Changes:
- Updated sponsor list (logos, ordering, and sponsor set) and changed the heading to “2026 Sponsors”.
- Split sponsor rendering into a “gold” row and a non-gold row, with new tier CSS classes.
- Replaced the previous “special” sponsor styling with new gold/silver styling and tweaked mobile
.sponsor-iconslayout behavior.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| src/components/Home/Sponsors.js | Updates sponsor data, heading text, and renders gold sponsors separately with tier classes. |
| src/components/Home/home.css | Replaces the prior sponsor highlight class with gold/silver tier styles and adjusts mobile sponsor icon box sizing. |
Comments suppressed due to low confidence (1)
src/components/Home/Sponsors.js:85
- Using the array index as a React key can cause incorrect UI updates if the sponsor list order changes (e.g., inserting/reordering sponsors). Prefer a stable unique key such as
sponsor.href(orimgSrc).
key={index}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| key={index} | ||
| lg={3} | ||
| className={`sponsor-icons ${sponsor.special ? 'sponsor-special' : ''}`} | ||
| className={`sponsor-icons ${sponsor.silver ? 'sponsor-silver' : ''}`} |
| <Row style={{ justifyContent: "center", paddingBottom: "20px" }}> | ||
| {sponsors.filter(s => s.gold).map((sponsor, index) => ( | ||
| <Col | ||
| key={index} |
Comment on lines
+480
to
488
| .sponsor-gold { | ||
| box-shadow: 0px 0px 10px 8px rgba(255, 215, 0, 0.5); | ||
| border: 1.7px solid rgba(255, 255, 0, 1) !important; | ||
| } | ||
|
|
||
| .sponsor-silver { | ||
| box-shadow: 0px 0px 10px 8px rgba(192, 192, 192, 0.5); | ||
| border: 1.7px solid rgba(192, 192, 192, 1) !important; | ||
| } |
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.
Updated logos with updated names and title. Also made sure they look good on mobile.
