diff --git a/src/lib/data/games.ts b/src/lib/data/games.ts index 58ce091..b89620a 100644 --- a/src/lib/data/games.ts +++ b/src/lib/data/games.ts @@ -1,6 +1,11 @@ import type { GamesObj } from '$lib/types'; const games: GamesObj = { + rahvatarkus: { + name: 'Rahva tarkus', + image: '', + description: 'Rahvas teab, sest pitu pead on mitu pead - hajusintelligents' + }, vaukuivali: { name: 'Vau kui vali', image: '', @@ -15,11 +20,6 @@ const games: GamesObj = { name: 'Paku biiti', image: '', description: 'Sorteeri kolme suvalise muusika albumi pealkiri, artistid ja pilt.' - }, - '': { - name: 'Rohkem mänge soon™', - image: '', - description: '' } }; diff --git a/src/routes/vinge/+page.svelte b/src/routes/vinge/+page.svelte index 6f8aa2f..b4af277 100644 --- a/src/routes/vinge/+page.svelte +++ b/src/routes/vinge/+page.svelte @@ -30,10 +30,7 @@ > {#each Object.entries(games) as [href, { image, name }]}