mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
feat: add more sounds
This commit is contained in:
parent
ace0d6eecc
commit
b497d16fd8
5 changed files with 21 additions and 0 deletions
BIN
public/sounds/animals/beehive.mp3
Normal file
BIN
public/sounds/animals/beehive.mp3
Normal file
Binary file not shown.
BIN
public/sounds/animals/woodpecker.mp3
Normal file
BIN
public/sounds/animals/woodpecker.mp3
Normal file
Binary file not shown.
BIN
public/sounds/places/restaurant.mp3
Normal file
BIN
public/sounds/places/restaurant.mp3
Normal file
Binary file not shown.
|
|
@ -4,6 +4,8 @@ import {
|
|||
GiWolfHead,
|
||||
GiOwl,
|
||||
GiWhaleTail,
|
||||
GiTreeBeehive,
|
||||
GiEgyptianBird,
|
||||
} from 'react-icons/gi/index';
|
||||
import {
|
||||
FaDog,
|
||||
|
|
@ -86,6 +88,18 @@ export const animals: Category = {
|
|||
label: 'Whale',
|
||||
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',
|
||||
};
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ import {
|
|||
} from 'react-icons/md/index';
|
||||
import { HiOfficeBuilding } from 'react-icons/hi/index';
|
||||
import { AiFillExperiment } from 'react-icons/ai/index';
|
||||
import { IoRestaurant } from 'react-icons/io5/index';
|
||||
|
||||
import type { Category } from '../types';
|
||||
|
||||
|
|
@ -104,6 +105,12 @@ export const places: Category = {
|
|||
label: 'Laundry Room',
|
||||
src: '/sounds/places/laundry-room.mp3',
|
||||
},
|
||||
{
|
||||
icon: <IoRestaurant />,
|
||||
id: 'restaurant',
|
||||
label: 'Restaurant',
|
||||
src: '/sounds/places/restaurant.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Places',
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue