portfolio_site/src/lib/config.ts

35 lines
906 B
TypeScript
Raw Normal View History

2025-01-31 16:44:38 +02:00
import type { GamesObj, TagsObj } from './types';
2025-01-22 18:08:27 +02:00
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 = {
2025-01-24 11:50:06 +02:00
'/epochalypse': {
name: 'Epochalypse',
image: '',
description: 'Varsti veel üks Y2K. Kui nostalgiline!'
},
2025-01-30 14:31:42 +02:00
'/pakubiiti': {
name: 'Paku biiti',
image: '',
description: 'Sorteeri kolme suvalise muusika albumi pealkiri, artistid ja pilt.'
},
2025-01-22 17:05:10 +02:00
'': {
name: 'Rohkem mänge soon™',
2025-01-22 17:05:10 +02:00
image: '',
description: ''
2025-01-22 14:25:24 +02:00
}
};
2025-01-31 16:44:38 +02:00
export const badges: TagsObj = {
muusika: { name: 'Muusika', description: 'Tegelen siin muusikaga' },
veeb: { name: 'Veebileht', description: 'Disainisin/kirjutasin veebilehe' },
asutaja: { name: 'Asutaja', description: 'Olin osa selle loomisest' }
};