Problem statement
Game cards on the listing page do not show each game's star rating, even though starRating is already available in the Game model. This makes it harder to quickly compare games at a glance.
Proposed solution
Update src/components/GameCard.astro to render each game's rating on the card. If starRating is null, display No rating yet instead.
Alternatives considered
Leave ratings only on the game details page.
Additional context
Keep the existing card layout structure unchanged and make a minimal component-only change.
Problem statement
Game cards on the listing page do not show each game's star rating, even though
starRatingis already available in theGamemodel. This makes it harder to quickly compare games at a glance.Proposed solution
Update
src/components/GameCard.astroto render each game's rating on the card. IfstarRatingisnull, displayNo rating yetinstead.Alternatives considered
Leave ratings only on the game details page.
Additional context
Keep the existing card layout structure unchanged and make a minimal component-only change.