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
b497d16fd8
commit
be38b92647
5 changed files with 21 additions and 0 deletions
BIN
public/sounds/animals/chickens.mp3
Normal file
BIN
public/sounds/animals/chickens.mp3
Normal file
Binary file not shown.
BIN
public/sounds/animals/cows.mp3
Normal file
BIN
public/sounds/animals/cows.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/vinyl-effect.mp3
Normal file
BIN
public/sounds/things/vinyl-effect.mp3
Normal file
Binary file not shown.
|
|
@ -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: <GiChicken />,
|
||||
id: 'chickens',
|
||||
label: 'Chickens',
|
||||
src: '/sounds/animals/chickens.mp3',
|
||||
},
|
||||
{
|
||||
icon: <GiCow />,
|
||||
id: 'cows',
|
||||
label: 'Cows',
|
||||
src: '/sounds/animals/cows.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Animals',
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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: <PiVinylRecord />,
|
||||
id: 'vinyl-effect',
|
||||
label: 'Vinyl Effect',
|
||||
src: '/sounds/things/vinyl-effect.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Things',
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue