Merge branch 'beta' into 'main'

update 2023 results

See merge request pls5618/website!10
This commit is contained in:
Olivier Demers 2023-04-03 14:21:44 +00:00
commit 5cdb56c089
2 changed files with 11 additions and 11 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 KiB

View File

@ -1,4 +1,5 @@
<script lang="ts">
import img2023 from '$lib/assets/resultats/2023.jpg?width=600&webp';
import img2022 from '$lib/assets/resultats/2022.jpg?width=600&webp';
import img2020 from '$lib/assets/resultats/2020.jpg?width=600&webp';
import img2019 from '$lib/assets/resultats/2019.jpg?width=600&webp';
@ -10,6 +11,16 @@
import Resultat from './Resultat.svelte';
const resultats: Res[] = [
{
saison: '2023',
image: img2023,
events: [
{
nom: 'Festival de robotique de Trois-Rivières',
resultats: ['15e en qualification', 'Alliance gagnante']
}
]
},
{
saison: '2022',
image: img2022,
@ -107,17 +118,6 @@
</script>
<div class="container">
<article>
<header>Saison 2023</header>
<a
href="https://www.thebluealliance.com/gameday#chat=firstupdatesnow&layout=1&view_0=2023qcmo-0&view_1=2023qcmo-1"
target="_blank"
rel="noreferrer"
>
Regarder la compétition
</a>
</article>
{#each resultats as resultat}
<Resultat resultats={resultat} />
{/each}