2025-01-22 13:43:44 +02:00
|
|
|
import type { GamesObj } 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'
|
|
|
|
};
|
2025-01-22 13:43:44 +02:00
|
|
|
|
|
|
|
export const baseURL = 'https://stuff.kasterpalu.ee';
|
|
|
|
|
|
|
|
export const games: GamesObj = {
|
2025-01-22 14:25:24 +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: 'More soonTM',
|
|
|
|
image: '',
|
|
|
|
description: ''
|
2025-01-22 14:25:24 +02:00
|
|
|
}
|
2025-01-22 13:43:44 +02:00
|
|
|
};
|