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