A full-stack web app for looking up League of Legends players — view match history and ranked statistics. Built to sharpen my .NET and React skills.
Note: the backend is hosted on Render's free tier, which spins down after inactivity. The first request after a while may take up to a minute to wake the server.
- Player lookup by Riot ID (EUW server — region is currently hardcoded)
- Match history with game details
- Ranked stats and tier display
- Frontend: React, TypeScript, Vite
- Backend: ASP.NET Core Web API, C#
- External API: Riot Games API
# Backend
cd server && dotnet run
# Frontend
cd client && npm install && npm run dev