chore(frontend): trim ticker copy, set default volume to 67%
This commit is contained in:
parent
922f3d9e10
commit
abca97b4ac
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ export function HeroPlayer({ initialStations }: Props) {
|
|||
const [stations, setStations] = useState<Station[]>(initialStations);
|
||||
const [selectedId, setSelectedId] = useState<string>(initialStations[0]?.id ?? '');
|
||||
const [format, setFormat] = useState<Format>('mp3');
|
||||
const [vol, setVol] = useState<number>(0.72);
|
||||
const [vol, setVol] = useState<number>(0.67);
|
||||
const [muted, setMuted] = useState(false);
|
||||
const [playing, setPlaying] = useState(false);
|
||||
const [now, setNow] = useState<NowPlaying | null>(null);
|
||||
|
|
@ -324,7 +324,7 @@ export function HeroPlayer({ initialStations }: Props) {
|
|||
</button>
|
||||
<div className="ticker">
|
||||
<div className="ticker-inner">
|
||||
※ no ads · no algorithms · just signal ※ adding a station = mkdir on storage box ※ space=play ←→=switch ↑↓=vol m=mute ※
|
||||
※ no ads · no algorithms · just signal ※ space=play ←→=switch ↑↓=vol m=mute ※
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue