portfolio_site/src/lib/data/games.ts
Mihkel Martin Kasterpalu ba34242475 Move projects to index, games from index to /vinge
Also move games, badges from config.ts and projects from project page
defintion to /src/lib/data
2025-01-31 18:38:44 +02:00

21 lines
445 B
TypeScript

import type { GamesObj } from '$lib/types';
const games: GamesObj = {
epochalypse: {
name: 'Epochalypse',
image: '',
description: 'Varsti veel üks Y2K. Kui nostalgiline!'
},
pakubiiti: {
name: 'Paku biiti',
image: '',
description: 'Sorteeri kolme suvalise muusika albumi pealkiri, artistid ja pilt.'
},
'': {
name: 'Rohkem mänge soon™',
image: '',
description: ''
}
};
export default games;