diff --git a/public/sounds/animals/chickens.mp3 b/public/sounds/animals/chickens.mp3 new file mode 100644 index 0000000..1449b0f Binary files /dev/null and b/public/sounds/animals/chickens.mp3 differ diff --git a/public/sounds/animals/cows.mp3 b/public/sounds/animals/cows.mp3 new file mode 100644 index 0000000..4550bf3 Binary files /dev/null and b/public/sounds/animals/cows.mp3 differ diff --git a/public/sounds/things/vinyl-effect.mp3 b/public/sounds/things/vinyl-effect.mp3 new file mode 100644 index 0000000..65abc18 Binary files /dev/null and b/public/sounds/things/vinyl-effect.mp3 differ diff --git a/src/data/sounds/animals.tsx b/src/data/sounds/animals.tsx index 787498c..4ee95bb 100644 --- a/src/data/sounds/animals.tsx +++ b/src/data/sounds/animals.tsx @@ -6,6 +6,8 @@ import { GiWhaleTail, GiTreeBeehive, GiEgyptianBird, + GiChicken, + GiCow, } from 'react-icons/gi/index'; import { FaDog, @@ -100,6 +102,18 @@ export const animals: Category = { label: 'Woodpecker', src: '/sounds/animals/woodpecker.mp3', }, + { + icon: , + id: 'chickens', + label: 'Chickens', + src: '/sounds/animals/chickens.mp3', + }, + { + icon: , + id: 'cows', + label: 'Cows', + src: '/sounds/animals/cows.mp3', + }, ], title: 'Animals', }; diff --git a/src/data/sounds/things.tsx b/src/data/sounds/things.tsx index 3ba39cd..7338770 100644 --- a/src/data/sounds/things.tsx +++ b/src/data/sounds/things.tsx @@ -10,6 +10,7 @@ import { TbBowlFilled } from 'react-icons/tb/index'; import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index'; import { BiSolidDryer } from 'react-icons/bi/index'; import { IoIosRadio } from 'react-icons/io/index'; +import { PiVinylRecord } from 'react-icons/pi/index'; import type { Category } from '../types'; @@ -101,6 +102,12 @@ export const things: Category = { label: 'Washing Machine', src: '/sounds/things/washing-machine.mp3', }, + { + icon: , + id: 'vinyl-effect', + label: 'Vinyl Effect', + src: '/sounds/things/vinyl-effect.mp3', + }, ], title: 'Things', };