` container
- When imageFilename exists: render `

` (same as current)
- When imageFilename is null: render a centered placeholder with the category emoji. Use `
` containing a `
{categoryEmoji}`. The gray-50 background provides the subtle placeholder look.
**CandidateCard.tsx changes:**
- Identical treatment: always render the 4:3 area, show image or category emoji placeholder
- Same structure as ItemCard
Both cards already receive categoryEmoji as a prop, so no prop changes needed.
cd /home/jean-luc-makiola/Development/projects/GearBox && bun run lint 2>&1 | tail -5
Every ItemCard and CandidateCard renders a 4:3 image area. Cards with images show the image; cards without show a gray placeholder with the category emoji centered.
Task 2: Add small thumbnails to setup item lists
src/client/routes/setups/$setupId.tsx
The setup detail page currently renders items using ItemCard in a grid. The setup also has a concept of item lists. Add small square thumbnails next to item names in the setup's item display.
Since the setup page uses ItemCard components in a grid (which now have the 4:3 area from Task 1), the card-level display is already handled. The additional work here is for any list-style display of setup items.
Check the setup detail route for list-view rendering of items. If items are only shown via ItemCard grid, then this task focuses on ensuring the ItemCard placeholder works in the setup context. If there's a separate list view, add thumbnails:
**Thumbnail spec (for list views):**
- Small square image: `w-10 h-10 rounded-lg object-cover flex-shrink-0` (~40px)
- Placed to the left of the item name in a flex row
- When imageFilename exists: `
`
- When null: `{categoryEmoji}
`
If the setup page only uses ItemCard (no list view), verify the ItemCard changes from Task 1 render correctly in the setup context and note this in the summary.
cd /home/jean-luc-makiola/Development/projects/GearBox && bun run lint 2>&1 | tail -5
Setup item lists show small square thumbnails (or category emoji placeholders) next to item names. If setup only uses ItemCard grid, the placeholder from Task 1 renders correctly in setup context.
1. Item cards in the gear collection always show a 4:3 area (no layout jump between cards with/without images)
2. Cards without images show gray background with category emoji centered
3. Cards with images show the image with object-cover
4. Candidate cards have identical placeholder behavior
5. Setup item display includes image context (thumbnails or card placeholders)
6. `bun run lint` passes
- All gear cards have consistent heights due to always-present 4:3 image area
- Placeholder shows category emoji when no image exists
- Setup items show image context (thumbnail or card placeholder)
- No layout shift between cards with and without images