portfolio_site/src/lib/config.ts

14 lines
325 B
TypeScript
Raw Normal View History

import type { GamesObj } from './types';
export const siteName = 'Stuff.Kasterpalu';
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.'
}
};