Files
kfj001andCopilot eab0abf800 New redesign
Co-authored-by: Copilot <copilot@github.com>
2026-04-28 02:41:47 +00:00

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];