diff --git a/src/newtab/newtab.js b/src/newtab/newtab.js index 8f3dd8c..a7bf28b 100644 --- a/src/newtab/newtab.js +++ b/src/newtab/newtab.js @@ -57,15 +57,26 @@ const CATALOGUE_TTL_MS = 6 * 60 * 60 * 1000; // Quick-pick stations. These are the SomaFM ids most people start with. // If the catalogue is missing any (rare), they're just dropped silently. +// +// Layout: 14 stations across roughly chill / ambient / indie / lounge / +// space / electronic / americana / 80s / alt-rock / celtic — broader +// genre coverage than the v0.4.0 list, plus DEF CON Radio (the on-brand +// cybersecurity pick) and ThistleRadio (the Dublin-built Irish nod). const QUICK_IDS = [ - 'groovesalad', - 'dronezone', - 'indiepop', - 'secretagent', - 'spacestation', - 'lush', - 'deepspaceone', - 'fluid', + 'groovesalad', // chill / electronic + 'dronezone', // ambient + 'indiepop', // indie pop rocks + 'secretagent', // lounge / spy + 'spacestation', // ambient / space + 'lush', // vocal / chill + 'deepspaceone', // ambient + 'fluid', // electronic + 'defcon', // electronic / hacker culture (DEF CON Radio) + 'beatblender', // electronic / breakbeat + 'bootliquor', // americana / outlaw country + 'u80s', // 80s indie / synthwave (Underground 80s) + 'bagel', // indie / alt-rock (BAGeL Radio) + 'thistle', // celtic / folk (ThistleRadio) ]; let stations = [];