diff --git a/.github/assets/sounds/playground.ogg b/.github/assets/sounds/playground.ogg new file mode 100644 index 00000000..7976f738 Binary files /dev/null and b/.github/assets/sounds/playground.ogg differ diff --git a/README.md b/README.md index 6e9ab691..3716b8f7 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ pnpm build && pnpm start # ©️ Credits ## Icons -[rain](https://freeicons.io/weather-4/weather-forecast-rain-wind-strong-cloud-icon-44765) - [storm](https://freeicons.io/weather-4/weather-forecast-storn-lightning-bolt-cloud-storm-icon-44770) - [wind](https://freeicons.io/weather-4/weather-forecast-blow-wind-windy-icon-44746) - [drops](https://freeicons.io/weather-icons/icon-raindrops-icon-6741) - [waves](https://freeicons.io/test/travel-beach-swimming-icon-1279) - [birds-tree](https://freeicons.io/travel-and-holiday/travel-trees-icon-1302) - [leafs](https://freeicons.io/beauty-and-salon/leaf-icon-1202) - [fire](https://freeicons.io/travel-and-holiday/travel-fire-icon-1289) - [cave](https://www.flaticon.com/free-icon/cave_2206606) - [night](https://freeicons.io/weather-4/weather-moon-night-stars-icon-44777) - [coffee](https://freeicons.io/restaurant/restaurant-breakfast-hot-drink-coffee-icon-43370) - [noise-block](https://freeicons.io/computer-devices/headset-headphone-earphone-icon-133586) - [train](https://freeicons.io/vehicles-and-transport-2/vehicles-and-transport-train-sign-rail-tram-travel-icon-44648) - [air-plane](https://freeicons.io/travel-and-holiday/travel-plane-flight-icon-1296) - [underwater](https://freeicons.io/sports-icons-2/icon-diving-goggles-icon-6578) - [washingmachine](https://freeicons.io/cleaning/cleaning-washing-machine-washingmachine-icon-42075#) - [waterfall](https://www.svgrepo.com/svg/215029/waterfall) - [noise](https://freeicons.io/music-2/music-sound-waveform-wave-icon-43351) +[rain](https://freeicons.io/weather-4/weather-forecast-rain-wind-strong-cloud-icon-44765) - [storm](https://freeicons.io/weather-4/weather-forecast-storn-lightning-bolt-cloud-storm-icon-44770) - [wind](https://freeicons.io/weather-4/weather-forecast-blow-wind-windy-icon-44746) - [drops](https://freeicons.io/weather-icons/icon-raindrops-icon-6741) - [waves](https://freeicons.io/test/travel-beach-swimming-icon-1279) - [birds-tree](https://freeicons.io/travel-and-holiday/travel-trees-icon-1302) - [leafs](https://freeicons.io/beauty-and-salon/leaf-icon-1202) - [fire](https://freeicons.io/travel-and-holiday/travel-fire-icon-1289) - [cave](https://www.flaticon.com/free-icon/cave_2206606) - [night](https://freeicons.io/weather-4/weather-moon-night-stars-icon-44777) - [coffee](https://freeicons.io/restaurant/restaurant-breakfast-hot-drink-coffee-icon-43370) - [noise-block](https://freeicons.io/computer-devices/headset-headphone-earphone-icon-133586) - [train](https://freeicons.io/vehicles-and-transport-2/vehicles-and-transport-train-sign-rail-tram-travel-icon-44648) - [air-plane](https://freeicons.io/travel-and-holiday/travel-plane-flight-icon-1296) - [underwater](https://freeicons.io/sports-icons-2/icon-diving-goggles-icon-6578) - [washingmachine](https://freeicons.io/cleaning/cleaning-washing-machine-washingmachine-icon-42075#) - [waterfall](https://www.svgrepo.com/svg/215029/waterfall) - [playground](https://freeicons.io/water-park-icon-set-35898/slider-playground-fair-water-park-winter-amusement-icon-1439949) - [noise](https://freeicons.io/music-2/music-sound-waveform-wave-icon-43351) ## Sounds @@ -100,6 +100,7 @@ Sound | Auth [Brown Noise](https://freesound.org/people/georgedyer/sounds/171552/) | [George Dyer](https://freesound.org/people/georgedyer/) | CC0 | [Mateus Felipe](https://github.com/mateusfg7) [White noise](https://commons.wikimedia.org/w/index.php?title=File%3AWhite-noise-sound-20sec-mono-44100Hz.ogg) | [Jorge Stolfi](https://commons.wikimedia.org/wiki/User:Jorge_Stolfi) | CC BY-SA [Pink Noise](https://es.wikipedia.org/wiki/Archivo:Pink_noise.ogg) | [Omegatron](https://commons.wikimedia.org/wiki/User:Omegatron) | CC BY-SA +[Playground](https://www.youtube.com/watch?v=YxGv6o1g-LM) | [SFX Producer](https://www.youtube.com/channel/UCbJpWz8-JnMwVqHZcUE8gaQ) | CC0 # Alternatives diff --git a/src/components/sound-icons/index.ts b/src/components/sound-icons/index.ts index 00dc99f2..5d327565 100644 --- a/src/components/sound-icons/index.ts +++ b/src/components/sound-icons/index.ts @@ -18,3 +18,4 @@ export { ReactComponent as WashingMachine } from './washing-machine.svg' export { ReactComponent as Waterfall } from './waterfall.svg' export { ReactComponent as Waves } from './waves.svg' export { ReactComponent as Wind } from './wind.svg' +export { ReactComponent as Playground } from './playground.svg' diff --git a/src/components/sound-icons/playground.svg b/src/components/sound-icons/playground.svg new file mode 100644 index 00000000..2441d7c0 --- /dev/null +++ b/src/components/sound-icons/playground.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/sounds.tsx b/src/sounds.tsx index 5c4db2c3..5879b22b 100644 --- a/src/sounds.tsx +++ b/src/sounds.tsx @@ -9,6 +9,7 @@ import { Leaves, Night, PinkNoise, + Playground, Rain, Storm, StreamWater, @@ -175,6 +176,15 @@ export const sounds = [ type: 'audio/ogg' } }, + { + id: 'playground', + title: 'Playground', + icon: Playground, + file: { + url: 'https://storage.googleapis.com/ambience-sounds/playground.ogg', + type: 'audio/ogg' + } + }, { id: 'brown-noise', title: 'Brown Noise',