chore: add more sounds

This commit is contained in:
MAZE 2024-01-29 23:49:07 +03:30
parent 1f12afa394
commit e2172fd2bb
4 changed files with 20 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -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: <GiWhaleTail />,
id: 'whale',
label: 'Whale',
src: '/sounds/animals/whale.mp3',
},
],
title: 'Animals',
};

View File

@ -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: <AiFillExperiment />,
id: 'laboratory',
label: 'Laboratory',
src: '/sounds/places/laboratory.mp3',
},
],
title: 'Places',
};