gitextract_acqhe0vy/ ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src/ │ ├── App.css │ ├── App.tsx │ ├── components/ │ │ ├── ColorModeSwitch.tsx │ │ ├── CriticScore.tsx │ │ ├── Emoji.tsx │ │ ├── GameCard.tsx │ │ ├── GameCardContainer.tsx │ │ ├── GameCardSkeleton.tsx │ │ ├── GameGrid.tsx │ │ ├── GameHeading.tsx │ │ ├── GenreList.tsx │ │ ├── NavBar.tsx │ │ ├── PlatformIconList.tsx │ │ ├── PlatformSelector.tsx │ │ ├── SearchInput.tsx │ │ └── SortSelector.tsx │ ├── data/ │ │ ├── genres.ts │ │ └── platforms.ts │ ├── hooks/ │ │ ├── useData.ts │ │ ├── useGames.ts │ │ ├── useGenres.ts │ │ └── usePlatforms.ts │ ├── index.css │ ├── main.tsx │ ├── services/ │ │ ├── api-client.ts │ │ └── image-url.ts │ ├── theme.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts