diff --git a/public/sounds/animals/crows.mp3 b/public/sounds/animals/crows.mp3 new file mode 100644 index 0000000..172af0f Binary files /dev/null and b/public/sounds/animals/crows.mp3 differ diff --git a/public/sounds/nature/wind-in-trees.mp3 b/public/sounds/nature/wind-in-trees.mp3 index 8b6de1c..a25cfab 100644 Binary files a/public/sounds/nature/wind-in-trees.mp3 and b/public/sounds/nature/wind-in-trees.mp3 differ diff --git a/public/sounds/places/crowded-bar.mp3 b/public/sounds/places/crowded-bar.mp3 new file mode 100644 index 0000000..39d299e Binary files /dev/null and b/public/sounds/places/crowded-bar.mp3 differ diff --git a/public/sounds/places/night-village.mp3 b/public/sounds/places/night-village.mp3 new file mode 100644 index 0000000..8082aeb Binary files /dev/null and b/public/sounds/places/night-village.mp3 differ diff --git a/public/sounds/things/dryer.mp3 b/public/sounds/things/dryer.mp3 new file mode 100644 index 0000000..0dc2f70 Binary files /dev/null and b/public/sounds/things/dryer.mp3 differ diff --git a/public/sounds/transport/rowing-boat.mp3 b/public/sounds/transport/rowing-boat.mp3 index e4a2a57..3ddbccd 100644 Binary files a/public/sounds/transport/rowing-boat.mp3 and b/public/sounds/transport/rowing-boat.mp3 differ diff --git a/src/data/sounds/animals.tsx b/src/data/sounds/animals.tsx index 8cceed2..feae074 100644 --- a/src/data/sounds/animals.tsx +++ b/src/data/sounds/animals.tsx @@ -1,5 +1,11 @@ import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index'; -import { FaDog, FaFrog, FaHorseHead, FaCat } from 'react-icons/fa/index'; +import { + FaDog, + FaFrog, + FaHorseHead, + FaCat, + FaCrow, +} from 'react-icons/fa/index'; import { PiBirdFill, PiDogBold } from 'react-icons/pi/index'; import type { Category } from '../types'; @@ -62,6 +68,12 @@ export const animals: Category = { label: 'Cat Purring', src: '/sounds/animals/cat-purring.mp3', }, + { + icon: , + id: 'crows', + label: 'Crows', + src: '/sounds/animals/crows.mp3', + }, ], title: 'Animals', }; diff --git a/src/data/sounds/nature.tsx b/src/data/sounds/nature.tsx index 0798ab6..4d20c8d 100644 --- a/src/data/sounds/nature.tsx +++ b/src/data/sounds/nature.tsx @@ -40,7 +40,7 @@ export const nature: Category = { src: '/sounds/nature/howling-wind.mp3', }, { - icon: , + icon: , id: 'wind-in-trees', label: 'Wind in Trees', src: '/sounds/nature/wind-in-trees.mp3', diff --git a/src/data/sounds/places.tsx b/src/data/sounds/places.tsx index 74dc161..3ecbe55 100644 --- a/src/data/sounds/places.tsx +++ b/src/data/sounds/places.tsx @@ -1,6 +1,7 @@ import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index'; import { FaChurch } from 'react-icons/fa/index'; -import { TbScubaMask } from 'react-icons/tb/index'; +import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index'; +import { GiVillage } from 'react-icons/gi/index'; import { MdTempleBuddhist, MdConstruction, @@ -49,6 +50,18 @@ export const places: Category = { label: 'Underwater', src: '/sounds/places/underwater.mp3', }, + { + icon: , + id: 'crowded-bar', + label: 'Crowded Bar', + src: '/sounds/places/crowded-bar.mp3', + }, + { + icon: , + id: 'night-village', + label: 'Night Village', + src: '/sounds/places/night-village.mp3', + }, ], title: 'Places', }; diff --git a/src/data/sounds/things.tsx b/src/data/sounds/things.tsx index 32fd917..482fbad 100644 --- a/src/data/sounds/things.tsx +++ b/src/data/sounds/things.tsx @@ -4,6 +4,7 @@ import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index'; import { MdSmartToy } from 'react-icons/md/index'; import { TbBowlFilled } from 'react-icons/tb/index'; import { RiFilePaper2Fill } from 'react-icons/ri/index'; +import { BiSolidDryer } from 'react-icons/bi/index'; import type { Category } from '../types'; @@ -53,6 +54,12 @@ export const things: Category = { label: 'Ceiling Fan', src: '/sounds/things/ceiling-fan.mp3', }, + { + icon: , + id: 'dryer', + label: 'Dryer', + src: '/sounds/things/dryer.mp3', + }, ], title: 'Things', };