chore: add more sounds

This commit is contained in:
MAZE 2024-01-22 18:31:23 +03:30
parent f682a910da
commit 01b4bdbb57
10 changed files with 35 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,11 @@
import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index'; import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index';
import { FaDog, FaFrog, FaHorseHead, FaCat } from 'react-icons/fa/index'; import {
FaDog,
FaFrog,
FaHorseHead,
FaCat,
FaCrow,
} from 'react-icons/fa/index';
import { PiBirdFill, PiDogBold } from 'react-icons/pi/index'; import { PiBirdFill, PiDogBold } from 'react-icons/pi/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -62,6 +68,12 @@ export const animals: Category = {
label: 'Cat Purring', label: 'Cat Purring',
src: '/sounds/animals/cat-purring.mp3', src: '/sounds/animals/cat-purring.mp3',
}, },
{
icon: <FaCrow />,
id: 'crows',
label: 'Crows',
src: '/sounds/animals/crows.mp3',
},
], ],
title: 'Animals', title: 'Animals',
}; };

View File

@ -40,7 +40,7 @@ export const nature: Category = {
src: '/sounds/nature/howling-wind.mp3', src: '/sounds/nature/howling-wind.mp3',
}, },
{ {
icon: <FaWind />, icon: <BiSolidTree />,
id: 'wind-in-trees', id: 'wind-in-trees',
label: 'Wind in Trees', label: 'Wind in Trees',
src: '/sounds/nature/wind-in-trees.mp3', src: '/sounds/nature/wind-in-trees.mp3',

View File

@ -1,6 +1,7 @@
import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index'; import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index';
import { FaChurch } from 'react-icons/fa/index'; import { FaChurch } from 'react-icons/fa/index';
import { TbScubaMask } from 'react-icons/tb/index'; import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index';
import { GiVillage } from 'react-icons/gi/index';
import { import {
MdTempleBuddhist, MdTempleBuddhist,
MdConstruction, MdConstruction,
@ -49,6 +50,18 @@ export const places: Category = {
label: 'Underwater', label: 'Underwater',
src: '/sounds/places/underwater.mp3', src: '/sounds/places/underwater.mp3',
}, },
{
icon: <TbBeerFilled />,
id: 'crowded-bar',
label: 'Crowded Bar',
src: '/sounds/places/crowded-bar.mp3',
},
{
icon: <GiVillage />,
id: 'night-village',
label: 'Night Village',
src: '/sounds/places/night-village.mp3',
},
], ],
title: 'Places', title: 'Places',
}; };

View File

@ -4,6 +4,7 @@ import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index';
import { MdSmartToy } from 'react-icons/md/index'; import { MdSmartToy } from 'react-icons/md/index';
import { TbBowlFilled } from 'react-icons/tb/index'; import { TbBowlFilled } from 'react-icons/tb/index';
import { RiFilePaper2Fill } from 'react-icons/ri/index'; import { RiFilePaper2Fill } from 'react-icons/ri/index';
import { BiSolidDryer } from 'react-icons/bi/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -53,6 +54,12 @@ export const things: Category = {
label: 'Ceiling Fan', label: 'Ceiling Fan',
src: '/sounds/things/ceiling-fan.mp3', src: '/sounds/things/ceiling-fan.mp3',
}, },
{
icon: <BiSolidDryer />,
id: 'dryer',
label: 'Dryer',
src: '/sounds/things/dryer.mp3',
},
], ],
title: 'Things', title: 'Things',
}; };