28 lines
641 B
TypeScript
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 = {
|
|
'/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: ''
|
|
}
|
|
};
|