feat: add more sounds

This commit is contained in:
MAZE 2024-09-03 17:51:19 +03:30
parent ace0d6eecc
commit b497d16fd8
5 changed files with 21 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -4,6 +4,8 @@ import {
GiWolfHead, GiWolfHead,
GiOwl, GiOwl,
GiWhaleTail, GiWhaleTail,
GiTreeBeehive,
GiEgyptianBird,
} from 'react-icons/gi/index'; } from 'react-icons/gi/index';
import { import {
FaDog, FaDog,
@ -86,6 +88,18 @@ export const animals: Category = {
label: 'Whale', label: 'Whale',
src: '/sounds/animals/whale.mp3', src: '/sounds/animals/whale.mp3',
}, },
{
icon: <GiTreeBeehive />,
id: 'beehive',
label: 'Beehive',
src: '/sounds/animals/beehive.mp3',
},
{
icon: <GiEgyptianBird />,
id: 'woodpecker',
label: 'Woodpecker',
src: '/sounds/animals/woodpecker.mp3',
},
], ],
title: 'Animals', title: 'Animals',
}; };

View file

@ -13,6 +13,7 @@ import {
} from 'react-icons/md/index'; } from 'react-icons/md/index';
import { HiOfficeBuilding } from 'react-icons/hi/index'; import { HiOfficeBuilding } from 'react-icons/hi/index';
import { AiFillExperiment } from 'react-icons/ai/index'; import { AiFillExperiment } from 'react-icons/ai/index';
import { IoRestaurant } from 'react-icons/io5/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -104,6 +105,12 @@ export const places: Category = {
label: 'Laundry Room', label: 'Laundry Room',
src: '/sounds/places/laundry-room.mp3', src: '/sounds/places/laundry-room.mp3',
}, },
{
icon: <IoRestaurant />,
id: 'restaurant',
label: 'Restaurant',
src: '/sounds/places/restaurant.mp3',
},
], ],
title: 'Places', title: 'Places',
}; };