diff --git a/public/sounds/animals/whale.mp3 b/public/sounds/animals/whale.mp3 new file mode 100644 index 0000000..5bc72ca Binary files /dev/null and b/public/sounds/animals/whale.mp3 differ diff --git a/public/sounds/places/laboratory.mp3 b/public/sounds/places/laboratory.mp3 new file mode 100644 index 0000000..6a65a2a Binary files /dev/null and b/public/sounds/places/laboratory.mp3 differ diff --git a/src/data/sounds/animals.tsx b/src/data/sounds/animals.tsx index feae074..6328413 100644 --- a/src/data/sounds/animals.tsx +++ b/src/data/sounds/animals.tsx @@ -1,4 +1,10 @@ -import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index'; +import { + GiCricket, + GiSeagull, + GiWolfHead, + GiOwl, + GiWhaleTail, +} from 'react-icons/gi/index'; import { FaDog, FaFrog, @@ -74,6 +80,12 @@ export const animals: Category = { label: 'Crows', src: '/sounds/animals/crows.mp3', }, + { + icon: , + id: 'whale', + label: 'Whale', + src: '/sounds/animals/whale.mp3', + }, ], title: 'Animals', }; diff --git a/src/data/sounds/places.tsx b/src/data/sounds/places.tsx index 48e2d76..9ceb646 100644 --- a/src/data/sounds/places.tsx +++ b/src/data/sounds/places.tsx @@ -8,6 +8,7 @@ import { MdLocationPin, } from 'react-icons/md/index'; import { HiOfficeBuilding } from 'react-icons/hi/index'; +import { AiFillExperiment } from 'react-icons/ai/index'; import type { Category } from '../types'; @@ -87,6 +88,12 @@ export const places: Category = { label: 'Carousel', src: '/sounds/places/carousel.mp3', }, + { + icon: , + id: 'laboratory', + label: 'Laboratory', + src: '/sounds/places/laboratory.mp3', + }, ], title: 'Places', };