portfolio_site/src/lib/config.ts
Mihkel Martin Kasterpalu be2c58d248 Epochalypse "game"
2025-01-24 11:50:06 +02:00

28 lines
641 B
TypeScript

import type { GamesObj } from './types';
export const site = {
name: 'Stuff.Kasterpalu',
author: 'Mihkel Martin Kasterpalu',
description: 'Minimängud ja muud huvitavat.',
image: '/web-app-manifest-512x512.png'
};
export const baseURL = 'https://stuff.kasterpalu.ee';
export const games: GamesObj = {
'/pakubiiti': {
name: 'Paku biiti',
image: '',
description: 'Sorteeri kolme suvalise muusika albumi pealkiri, artistid ja pilt.'
},
'/epochalypse': {
name: 'Epochalypse',
image: '',
description: 'Varsti veel üks Y2K. Kui nostalgiline!'
},
'': {
name: 'Rohkem mänge soon™',
image: '',
description: ''
}
};