chore: add more sounds

This commit is contained in:
MAZE 2023-12-27 16:55:22 +03:30
parent a43c679e21
commit 318e87c9f1
8 changed files with 35 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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',
};

View File

@ -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',
};

View File

@ -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',
};