portfolio_site/src/lib/data/games.ts

22 lines
445 B
TypeScript
Raw Normal View History

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;