diff --git a/public/sounds/places/office.mp3 b/public/sounds/places/office.mp3 new file mode 100644 index 0000000..c18f478 Binary files /dev/null and b/public/sounds/places/office.mp3 differ diff --git a/public/sounds/places/subway-station.mp3 b/public/sounds/places/subway-station.mp3 new file mode 100644 index 0000000..57b87f2 Binary files /dev/null and b/public/sounds/places/subway-station.mp3 differ diff --git a/public/sounds/things/slide-projector.mp3 b/public/sounds/things/slide-projector.mp3 new file mode 100644 index 0000000..21e0867 Binary files /dev/null and b/public/sounds/things/slide-projector.mp3 differ diff --git a/public/sounds/urban/fireworks.mp3 b/public/sounds/urban/fireworks.mp3 new file mode 100644 index 0000000..593a737 Binary files /dev/null and b/public/sounds/urban/fireworks.mp3 differ diff --git a/src/data/sounds/places.tsx b/src/data/sounds/places.tsx index 3ecbe55..8ce74d7 100644 --- a/src/data/sounds/places.tsx +++ b/src/data/sounds/places.tsx @@ -1,5 +1,5 @@ import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index'; -import { FaChurch } from 'react-icons/fa/index'; +import { FaChurch, FaSubway } from 'react-icons/fa/index'; import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index'; import { GiVillage } from 'react-icons/gi/index'; import { @@ -7,6 +7,7 @@ import { MdConstruction, MdLocationPin, } from 'react-icons/md/index'; +import { HiOfficeBuilding } from 'react-icons/hi/index'; import type { Category } from '../types'; @@ -62,6 +63,18 @@ export const places: Category = { label: 'Night Village', src: '/sounds/places/night-village.mp3', }, + { + icon: , + id: 'subway-station', + label: 'Subway Station', + src: '/sounds/places/subway-station.mp3', + }, + { + icon: , + id: 'office', + label: 'Office', + src: '/sounds/places/office.mp3', + }, ], title: 'Places', }; diff --git a/src/data/sounds/things.tsx b/src/data/sounds/things.tsx index 482fbad..08365bd 100644 --- a/src/data/sounds/things.tsx +++ b/src/data/sounds/things.tsx @@ -1,4 +1,4 @@ -import { GiWindchimes } from 'react-icons/gi/index'; +import { GiWindchimes, GiFilmProjector } from 'react-icons/gi/index'; import { BsFillKeyboardFill } from 'react-icons/bs/index'; import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index'; import { MdSmartToy } from 'react-icons/md/index'; @@ -60,6 +60,12 @@ export const things: Category = { label: 'Dryer', src: '/sounds/things/dryer.mp3', }, + { + icon: , + id: 'slide-projector', + label: 'Slide Projector', + src: '/sounds/things/slide-projector.mp3', + }, ], title: 'Things', }; diff --git a/src/data/sounds/urban.tsx b/src/data/sounds/urban.tsx index 16ae843..59cf3eb 100644 --- a/src/data/sounds/urban.tsx +++ b/src/data/sounds/urban.tsx @@ -2,6 +2,7 @@ import { BiSolidTraffic } from 'react-icons/bi/index'; import { FaCity, FaRoad } from 'react-icons/fa/index'; import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index'; import { BsSoundwave, BsPeopleFill } from 'react-icons/bs/index'; +import { RiSparkling2Fill } from 'react-icons/ri/index'; import type { Category } from '../types'; @@ -45,6 +46,12 @@ export const urban: Category = { label: 'Traffic', src: '/sounds/urban/traffic.mp3', }, + { + icon: , + id: 'fireworks', + label: 'Fireworks', + src: '/sounds/urban/fireworks.mp3', + }, ], title: 'Urban', };