16 lines
250 B
TypeScript
16 lines
250 B
TypeScript
export type SiteConfig = {
|
|
id: string;
|
|
label: string;
|
|
url: string;
|
|
};
|
|
|
|
export const SITES: SiteConfig[] = [
|
|
{
|
|
id: 'kryz-home',
|
|
label: 'Station Website',
|
|
url: 'https://kryzradio.org/',
|
|
},
|
|
];
|
|
|
|
export const ACTIVE_SITE = SITES[0];
|