diff --git a/public/sounds/nature/jungle.mp3 b/public/sounds/nature/jungle.mp3 new file mode 100644 index 0000000..35a3e7e Binary files /dev/null and b/public/sounds/nature/jungle.mp3 differ diff --git a/public/sounds/places/laundry-room.mp3 b/public/sounds/places/laundry-room.mp3 new file mode 100644 index 0000000..49df047 Binary files /dev/null and b/public/sounds/places/laundry-room.mp3 differ diff --git a/src/data/sounds/nature.tsx b/src/data/sounds/nature.tsx index 4d20c8d..046e8ba 100644 --- a/src/data/sounds/nature.tsx +++ b/src/data/sounds/nature.tsx @@ -1,7 +1,13 @@ import { GiWaterfall } from 'react-icons/gi/index'; import { BsFire, BsFillDropletFill } from 'react-icons/bs/index'; import { BiSolidTree, BiWater } from 'react-icons/bi/index'; -import { FaWater, FaWind, FaLeaf, FaRegSnowflake } from 'react-icons/fa/index'; +import { + FaWater, + FaWind, + FaLeaf, + FaRegSnowflake, + FaTree, +} from 'react-icons/fa/index'; import type { Category } from '../types'; @@ -69,6 +75,12 @@ export const nature: Category = { label: 'Droplets', src: '/sounds/nature/droplets.mp3', }, + { + icon: , + id: 'jungle', + label: 'Jungle', + src: '/sounds/nature/jungle.mp3', + }, ], title: 'Nature', }; diff --git a/src/data/sounds/places.tsx b/src/data/sounds/places.tsx index 9ceb646..378ccc7 100644 --- a/src/data/sounds/places.tsx +++ b/src/data/sounds/places.tsx @@ -1,4 +1,8 @@ -import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index'; +import { + BiSolidCoffeeAlt, + BiSolidPlaneAlt, + BiSolidDryer, +} from 'react-icons/bi/index'; import { FaChurch, FaSubway, FaShoppingBasket } from 'react-icons/fa/index'; import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index'; import { GiVillage, GiCarousel } from 'react-icons/gi/index'; @@ -94,6 +98,12 @@ export const places: Category = { label: 'Laboratory', src: '/sounds/places/laboratory.mp3', }, + { + icon: , + id: 'laundry-room', + label: 'Laundry Room', + src: '/sounds/places/laundry-room.mp3', + }, ], title: 'Places', };