A Next.JS web application to track our Valorant team ranking progress
This app uses Henrikdev's custom Valorant API to fetch data.
The project database has two collections: players and eloprogress.
As the name suggests, this collection stores the players data. Each document has an unique ID, which is the player's name.
Each player document has the following fields:
- currentMMR (number)
- docref (string)
- elo (number)
- maincharacter (string)
- name (string)
- pictureurl (string)
- riotid (string)
- tag (string)
This collection stores the player's elo progress across time.
Each player document has the same ID from the players collection, and has a subcollection called data.
Each document inside data is named using dd-m-yyyy structure.
Each data document has the following fields:
- MMR (number)
- elo (number)
- eloname (string)
- pdl (number)
- timestamp (timestamp)