Files
buildpath/frontend/pages/index.vue
vhaudiquet eef6a45ef6
All checks were successful
pipeline / build-and-push-images (push) Successful in 26s
pipeline / deploy (push) Successful in 7s
Update index with tierlists
2024-11-30 16:35:33 +01:00

38 lines
1.4 KiB
Vue

<script setup lang="ts">
import { POSITIONS, LANE_IMAGES, POSITIONS_STR } from '~/utils/cdragon';
const {data: stats}: {data: Ref<{patch: number, count: number}>} = await useFetch("/api/stats")
</script>
<template>
<Head>
<Title>BuildPath</Title>
</Head>
<Logo style="margin: auto; margin-top: 64px; margin-bottom: 64px;" />
<div style="display: flex; margin-top: 64px;">
<div style="margin: auto; margin-top: 0px; width: fit-content;">
<div style="margin: auto; margin-top: 110px; width: fit-content;">
<h2 style="font-size: 55px; margin-bottom: 10px;">Tierlists</h2>
<NuxtLink style="margin-top: 5px; margin-bottom: 5px;" v-for="(pos, i) in POSITIONS" :to="'/tierlist/' + pos">
<div style="display: flex; align-items: center;">
<img width="40" height="40" :src="LANE_IMAGES[i]" />
<h3 style="font-size: 34px; font-weight: 200; margin-left: 10px;">{{ POSITIONS_STR[i] }}</h3>
</div>
</NuxtLink>
</div>
<div style="margin: auto; margin-left: 50px; margin-top: 50px; width: fit-content; max-width: 300px;">
<h3 style="font-size: 30px; font-weight: 200;">
BuildPath analyzed {{ stats.count }} games from challenger players on patch {{ stats.patch }}
</h3>
</div>
</div>
<ChampionSelector style="width: 80%;"/>
</div>
</template>