{ // Hotel radio stations. Copy this file to `radio-stations.json5` (without the // .example suffix) and add your own stations — each entry is just a streaming // URL the client plays with the HTML5 Audio API. JSON5: // comments and // trailing commas are allowed. Add / remove / reorder freely, no rebuild needed. // // Fields: // id - unique key (string) // name - label shown in the radio widget // genre - optional subtitle // url - the audio stream URL (mp3/aac/ogg Icecast or Shoutcast) // logo - optional image URL shown next to the station // // The first station autostarts (quietly) on client load. The list can later // be moved to the CMS (website_settings) so it's editable from the admin. stations: [ // { id: 'mystation', name: 'My Station', genre: 'Hotel Radio', url: 'https://your-stream-host/stream' }, ], }