chore: add more sounds

This commit is contained in:
MAZE 2024-01-22 19:58:06 +03:30
parent 01b4bdbb57
commit cd05704a73
7 changed files with 28 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
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, FaSubway } from 'react-icons/fa/index';
import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index'; import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index';
import { GiVillage } from 'react-icons/gi/index'; import { GiVillage } from 'react-icons/gi/index';
import { import {
@ -7,6 +7,7 @@ import {
MdConstruction, MdConstruction,
MdLocationPin, MdLocationPin,
} from 'react-icons/md/index'; } from 'react-icons/md/index';
import { HiOfficeBuilding } from 'react-icons/hi/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -62,6 +63,18 @@ export const places: Category = {
label: 'Night Village', label: 'Night Village',
src: '/sounds/places/night-village.mp3', src: '/sounds/places/night-village.mp3',
}, },
{
icon: <FaSubway />,
id: 'subway-station',
label: 'Subway Station',
src: '/sounds/places/subway-station.mp3',
},
{
icon: <HiOfficeBuilding />,
id: 'office',
label: 'Office',
src: '/sounds/places/office.mp3',
},
], ],
title: 'Places', title: 'Places',
}; };

View File

@ -1,4 +1,4 @@
import { GiWindchimes } from 'react-icons/gi/index'; import { GiWindchimes, GiFilmProjector } from 'react-icons/gi/index';
import { BsFillKeyboardFill } from 'react-icons/bs/index'; import { BsFillKeyboardFill } from 'react-icons/bs/index';
import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index'; import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index';
import { MdSmartToy } from 'react-icons/md/index'; import { MdSmartToy } from 'react-icons/md/index';
@ -60,6 +60,12 @@ export const things: Category = {
label: 'Dryer', label: 'Dryer',
src: '/sounds/things/dryer.mp3', src: '/sounds/things/dryer.mp3',
}, },
{
icon: <GiFilmProjector />,
id: 'slide-projector',
label: 'Slide Projector',
src: '/sounds/things/slide-projector.mp3',
},
], ],
title: 'Things', title: 'Things',
}; };

View File

@ -2,6 +2,7 @@ import { BiSolidTraffic } from 'react-icons/bi/index';
import { FaCity, FaRoad } from 'react-icons/fa/index'; import { FaCity, FaRoad } from 'react-icons/fa/index';
import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index'; import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index';
import { BsSoundwave, BsPeopleFill } from 'react-icons/bs/index'; import { BsSoundwave, BsPeopleFill } from 'react-icons/bs/index';
import { RiSparkling2Fill } from 'react-icons/ri/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -45,6 +46,12 @@ export const urban: Category = {
label: 'Traffic', label: 'Traffic',
src: '/sounds/urban/traffic.mp3', src: '/sounds/urban/traffic.mp3',
}, },
{
icon: <RiSparkling2Fill />,
id: 'fireworks',
label: 'Fireworks',
src: '/sounds/urban/fireworks.mp3',
},
], ],
title: 'Urban', title: 'Urban',
}; };