Refine player layout and station data

This commit is contained in:
2026-04-26 15:18:41 +02:00
parent 972164bba7
commit 0864a28593
9 changed files with 44675 additions and 9944 deletions

View File

@@ -0,0 +1,10 @@
export async function loadManagedStations(): Promise<unknown[]> {
const response = await fetch('/stations.json');
if (!response.ok) {
throw new Error(`Failed to load managed stations: ${response.status}`);
}
const stations = await response.json();
return Array.isArray(stations) ? stations : [];
}