Frontend updates and changes

- Remove items/runes separate pages, put everything into a "build" page.
- Show summoner spells.
- Add a build variant selector, that for now only selects runes
This commit is contained in:
2026-02-25 14:59:42 +01:00
parent 564de90ecb
commit dc09d10f07
7 changed files with 782 additions and 53 deletions

View File

@@ -21,6 +21,13 @@ declare global {
}
type Item = {
id: number
iconPath: string
name?: string
}
type SummonerSpell = {
id: number
iconPath: string
name: string
}
type PerksResponse = {
data: Ref<Array<Perk>>