mirror of
https://github.com/remvze/moodist.git
synced 2025-09-29 15:30:49 -04:00
chore: add more sounds
This commit is contained in:
parent
a43c679e21
commit
318e87c9f1
BIN
public/sounds/animals/dog-barking.mp3
Normal file
BIN
public/sounds/animals/dog-barking.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/ceiling-fan.mp3
Normal file
BIN
public/sounds/things/ceiling-fan.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/busy-street.mp3
Normal file
BIN
public/sounds/urban/busy-street.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/church.mp3
Normal file
BIN
public/sounds/urban/church.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/temple.mp3
Normal file
BIN
public/sounds/urban/temple.mp3
Normal file
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index';
|
||||
import { FaDog, FaFrog } from 'react-icons/fa/index';
|
||||
import { PiBirdFill } from 'react-icons/pi/index';
|
||||
import { PiBirdFill, PiDogBold } from 'react-icons/pi/index';
|
||||
|
||||
import type { Category } from '../types';
|
||||
|
||||
@ -44,6 +44,12 @@ export const animals: Category = {
|
||||
label: 'Frog',
|
||||
src: '/sounds/animals/frog.mp3',
|
||||
},
|
||||
{
|
||||
icon: <PiDogBold />,
|
||||
id: 'dog-barking',
|
||||
label: 'Dog Barking',
|
||||
src: '/sounds/animals/dog-barking.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Animals',
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { GiWindchimes } from 'react-icons/gi/index';
|
||||
import { BsFillKeyboardFill } from 'react-icons/bs/index';
|
||||
import { FaKeyboard, FaClock } from 'react-icons/fa/index';
|
||||
import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index';
|
||||
import { MdSmartToy } from 'react-icons/md/index';
|
||||
import { TbBowlFilled } from 'react-icons/tb/index';
|
||||
import { RiFilePaper2Fill } from 'react-icons/ri/index';
|
||||
@ -47,6 +47,12 @@ export const things: Category = {
|
||||
label: 'Singing Bowl',
|
||||
src: '/sounds/things/singing-bowl.mp3',
|
||||
},
|
||||
{
|
||||
icon: <FaFan />,
|
||||
id: 'ceiling-fan',
|
||||
label: 'Ceiling Fan',
|
||||
src: '/sounds/things/ceiling-fan.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Things',
|
||||
};
|
||||
|
@ -3,8 +3,10 @@ import {
|
||||
BiSolidTrain,
|
||||
BiSolidPlaneAlt,
|
||||
} from 'react-icons/bi/index';
|
||||
import { FaCity, FaRoad } from 'react-icons/fa/index';
|
||||
import { FaCity, FaRoad, FaChurch } from 'react-icons/fa/index';
|
||||
import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index';
|
||||
import { MdTempleBuddhist } from 'react-icons/md';
|
||||
import { BsSoundwave } from 'react-icons/bs/index';
|
||||
|
||||
import type { Category } from '../types';
|
||||
|
||||
@ -60,6 +62,24 @@ export const urban: Category = {
|
||||
label: 'Airplane',
|
||||
src: '/sounds/urban/airplane.mp3',
|
||||
},
|
||||
{
|
||||
icon: <FaChurch />,
|
||||
id: 'church',
|
||||
label: 'Church',
|
||||
src: '/sounds/urban/church.mp3',
|
||||
},
|
||||
{
|
||||
icon: <MdTempleBuddhist />,
|
||||
id: 'temple',
|
||||
label: 'Temple',
|
||||
src: '/sounds/urban/temple.mp3',
|
||||
},
|
||||
{
|
||||
icon: <BsSoundwave />,
|
||||
id: 'busy-street',
|
||||
label: 'Busy Street',
|
||||
src: '/sounds/urban/busy-street.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Urban',
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user