feat: add desktop for white starter-kit#471
Merged
michelleyeoh merged 8 commits intomainfrom Apr 10, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds the desktop “white” Starter Kit Team Building section, including new illustrations and a reusable callout-card component, while extending the schedule CalendarItem to support a “no add button” variant for use in Starter Kit.
Changes:
- Implemented
StarterKit/TeamBuildingdesktop layout with event card, Discord CTA, and guiding questions. - Refactored
IdeateMentorCalloutinto a reusableMentorCalloutCardcomponent. - Extended
CalendarItemwithhideAddButton/disableAddButtonand adjusted layout logic; added new Team Building SVG assets.
Reviewed changes
Copilot reviewed 3 out of 9 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| public/hackers/starter-kit/teamBuilding/teamMixer.svg | Adds Team Building illustration asset for the callout card. |
| public/hackers/starter-kit/teamBuilding/mascotSquad.svg | Adds mascot banner illustration asset. |
| public/hackers/starter-kit/teamBuilding/locationIcon.svg | Adds a location icon asset for Team Building UI. |
| public/hackers/starter-kit/teamBuilding/cowIcon.svg | Adds a cow icon asset for Team Building UI. |
| public/hackers/starter-kit/teamBuilding/blackArrow.svg | Adds an arrow icon asset for Team Building UI. |
| public/hackers/starter-kit/teamBuilding/add.svg | Adds an “add” icon asset for Team Building UI. |
| app/(pages)/(hackers)/_components/StarterKit/TeamBuilding.tsx | Implements the new Team Building Starter Kit section and uses CalendarItem + MentorCalloutCard. |
| app/(pages)/(hackers)/_components/StarterKit/Ideate/IdeateMentorCallout.tsx | Extracts MentorCalloutCard and updates the Ideate callout to use it. |
| app/(pages)/(hackers)/_components/Schedule/CalendarItem.tsx | Adds hideAddButton/disableAddButton and changes layout + attendee display behavior. |
Comments suppressed due to low confidence (1)
app/(pages)/(hackers)/_components/Schedule/CalendarItem.tsx:130
- The attendee count container
classNametemplate string includes extra newlines/whitespace inside the interpolation, which makes the renderedclassharder to inspect and maintain. It should be simplified to only the needed classes (no trailing whitespace/newlines).
{(displayType === 'WORKSHOPS' || displayType === 'ACTIVITIES') && (
<div
className={`flex gap-2 items-center w-full sm:w-auto ${
attendeeCount && attendeeCount > 0
? 'visible'
: 'hidden sm:invisible sm:flex'
}
`}
>
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Add the desktop version of the white starter-kit section.
Problems