diff --git a/public/sounds/things/clock.mp3 b/public/sounds/things/clock.mp3 new file mode 100644 index 0000000..55641ee Binary files /dev/null and b/public/sounds/things/clock.mp3 differ diff --git a/public/sounds/things/keyboard.mp3 b/public/sounds/things/keyboard.mp3 new file mode 100644 index 0000000..d417c1a Binary files /dev/null and b/public/sounds/things/keyboard.mp3 differ diff --git a/public/sounds/things/paper.mp3 b/public/sounds/things/paper.mp3 new file mode 100644 index 0000000..a0c3775 Binary files /dev/null and b/public/sounds/things/paper.mp3 differ diff --git a/public/sounds/things/typewriter.mp3 b/public/sounds/things/typewriter.mp3 new file mode 100644 index 0000000..bd3ee8f Binary files /dev/null and b/public/sounds/things/typewriter.mp3 differ diff --git a/public/sounds/things/wind-chimes.mp3 b/public/sounds/things/wind-chimes.mp3 new file mode 100644 index 0000000..2ea2f6d Binary files /dev/null and b/public/sounds/things/wind-chimes.mp3 differ diff --git a/src/data/sounds.tsx b/src/data/sounds.tsx index aa40b4c..9684ee7 100644 --- a/src/data/sounds.tsx +++ b/src/data/sounds.tsx @@ -5,6 +5,7 @@ import { GiWaterfall, GiWolfHead, GiOwl, + GiWindchimes, } from 'react-icons/gi/index'; import { BsFire, @@ -12,6 +13,7 @@ import { BsFillCloudRainFill, BsFillCloudRainHeavyFill, BsUmbrellaFill, + BsFillKeyboardFill, } from 'react-icons/bs/index'; import { BiSolidTree, @@ -28,14 +30,17 @@ import { FaFrog, FaCity, FaRoad, + FaKeyboard, + FaClock, } from 'react-icons/fa/index'; import { PiBirdFill, PiTentFill, PiRoadHorizonFill, } from 'react-icons/pi/index'; -import { MdOutlineThunderstorm } from 'react-icons/md/index'; +import { MdOutlineThunderstorm, MdSmartToy } from 'react-icons/md/index'; import { TbScubaMask } from 'react-icons/tb/index'; +import { RiFilePaper2Fill } from 'react-icons/ri/index'; // const defaultIcon = ; @@ -229,5 +234,42 @@ export const sounds: { ], title: 'Urban', }, + { + icon: , + id: 'things', + sounds: [ + { + icon: , + id: 'keyboard', + label: 'Keyboard', + src: '/sounds/things/keyboard.mp3', + }, + { + icon: , + id: 'typewriter', + label: 'Typewriter', + src: '/sounds/things/typewriter.mp3', + }, + { + icon: , + id: 'paper', + label: 'Paper', + src: '/sounds/things/paper.mp3', + }, + { + icon: , + id: 'clock', + label: 'Clock', + src: '/sounds/things/clock.mp3', + }, + { + icon: , + id: 'wind-chimes', + label: 'Wind Chimes', + src: '/sounds/things/wind-chimes.mp3', + }, + ], + title: 'Things', + }, ], };