diff --git a/public/sounds/airport.mp3 b/public/sounds/airport.mp3 new file mode 100644 index 0000000..0b4498a Binary files /dev/null and b/public/sounds/airport.mp3 differ diff --git a/public/sounds/birds.mp3 b/public/sounds/birds.mp3 new file mode 100644 index 0000000..9f1d54a Binary files /dev/null and b/public/sounds/birds.mp3 differ diff --git a/public/sounds/cafe.mp3 b/public/sounds/cafe.mp3 new file mode 100644 index 0000000..0015c7e Binary files /dev/null and b/public/sounds/cafe.mp3 differ diff --git a/public/sounds/campfire.mp3 b/public/sounds/campfire.mp3 new file mode 100644 index 0000000..724a7ed Binary files /dev/null and b/public/sounds/campfire.mp3 differ diff --git a/public/sounds/crickets.mp3 b/public/sounds/crickets.mp3 new file mode 100644 index 0000000..aa941d9 Binary files /dev/null and b/public/sounds/crickets.mp3 differ diff --git a/public/sounds/rain-on-window.mp3 b/public/sounds/rain-on-window.mp3 new file mode 100644 index 0000000..e98e9d4 Binary files /dev/null and b/public/sounds/rain-on-window.mp3 differ diff --git a/public/sounds/rain.mp3 b/public/sounds/rain.mp3 new file mode 100644 index 0000000..d50f8bb Binary files /dev/null and b/public/sounds/rain.mp3 differ diff --git a/public/sounds/river.mp3 b/public/sounds/river.mp3 new file mode 100644 index 0000000..6f6853e Binary files /dev/null and b/public/sounds/river.mp3 differ diff --git a/public/sounds/seagulls.mp3 b/public/sounds/seagulls.mp3 new file mode 100644 index 0000000..5718669 Binary files /dev/null and b/public/sounds/seagulls.mp3 differ diff --git a/public/sounds/thunder.mp3 b/public/sounds/thunder.mp3 new file mode 100644 index 0000000..eb9baf7 Binary files /dev/null and b/public/sounds/thunder.mp3 differ diff --git a/public/sounds/waves.mp3 b/public/sounds/waves.mp3 new file mode 100644 index 0000000..a005906 Binary files /dev/null and b/public/sounds/waves.mp3 differ diff --git a/src/data/sounds.json b/src/data/sounds.json new file mode 100644 index 0000000..4ccf1ad --- /dev/null +++ b/src/data/sounds.json @@ -0,0 +1,58 @@ +{ + "sounds": { + "nature": { + "label": "Nature", + "sounds": [ + { + "label": "Rain", + "src": "/sounds/rain.mp3" + }, + { + "label": "Birds", + "src": "/sounds/birds.mp3" + }, + { + "label": "River", + "src": "/sounds/river.mp3" + }, + { + "label": "Thunder", + "src": "/sounds/thunder.mp3" + }, + { + "label": "Crickets", + "src": "/sounds/crickets.mp3" + }, + { + "label": "Waves", + "src": "/sounds/waves.mp3" + }, + { + "label": "Seagulls", + "src": "/sounds/seagulls.mp3" + }, + { + "label": "Campfire", + "src": "/sounds/campfire.mp3" + } + ] + }, + "urban": { + "label": "Urban", + "sounds": [ + { + "label": "Airport", + "src": "/sounds/airport.mp3" + }, + { + "label": "Cafe", + "src": "/sounds/cafe.mp3" + }, + { + "label": "Rain on Window", + "src": "/sounds/rain-on-window.mp3" + } + ] + } + } +}