New redesign

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-28 02:41:47 +00:00
co-authored by Copilot
parent 4bbcc7d537
commit eab0abf800
7 changed files with 208 additions and 70 deletions
+15
View File
@@ -0,0 +1,15 @@
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];