Independent Volume Control
Allow volume adjustment independent of system volume.
Incorrect (always full volume):
function playSound() {
audio.volume = 1;
audio.play();
}Correct (user-controlled volume):
function playSound() {
const { volume } = usePreferences();
audio.volume = volume;
audio.play();
}