Disable guest speakers link and homepage speaker photo - #90
Merged
Conversation
Co-authored-by: Axel-Moreau <295913124+Axel-Moreau@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
Axel-Moreau
August 10, 2026 14:33
View session
Axel-Moreau
marked this pull request as ready for review
August 10, 2026 14:34
There was a problem hiding this comment.
Pull request overview
This PR temporarily hides the homepage pathway to the dedicated /speakers page and removes the only confirmed speaker headshot from the homepage teaser, keeping the underlying /speakers route and data model intact for easy re-enable later.
Changes:
- Removed the “See all speakers” CTA button from the homepage Speakers section.
- De-spotlighted the “Guest speakers” teaser card by removing its
photoandhrefin content. - Updated speaker-management guidance in the README to document the temporary disablement.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
src/content/sections.ts |
Removes photo/href from the “Guest speakers” card and updates in-file guidance about the temporary disablement. |
src/components/SpeakersSection.tsx |
Removes the homepage “See all speakers” button and simplifies card rendering based on optional href/photo. |
README.md |
Documents the temporary disablement of the homepage speakers link and “Guest speakers” card link/photo. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
71
to
+73
| * Headshots go in `public/pictures/speakers/` and are referenced as `photo: "/pictures/speakers/<slug>.png"`. | ||
| * | ||
| * The "Guest speakers" card stays a navigational teaser to `/speakers`, not a spotlight on a | ||
| * single person: `photo` (the latest confirmed headshot) leads a row of "overlapping avatars", | ||
| * with generated placeholder avatars filling the remaining slots, hinting there is a full | ||
| * line-up to discover. As more speakers are confirmed, swap placeholder slots for real photos. | ||
| * The "Guest speakers" card's `photo` and `href` (link to the dedicated `/speakers` list) are |
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.
We don't yet have enough confirmed speakers to justify a full line-up page, so the
/speakerslink and our only confirmed speaker's headshot are being hidden from the homepage until more speakers are announced./speakersfrom the Speakers section.photoandhreffrom that card insrc/content/sections.ts, so it now renders as a plain placeholder card like the others, with no face or link./speakersroute, page, and underlying component logic are untouched — re-enabling is just a matter of re-addingphoto/hrefto the card once more speakers are confirmed. README speaker-management guide updated with a note on this.