Skip to content

Commit

Permalink
chore: add more sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Jan 22, 2024
1 parent 01b4bdb commit cd05704
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 2 deletions.
Binary file added public/sounds/places/office.mp3
Binary file not shown.
Binary file added public/sounds/places/subway-station.mp3
Binary file not shown.
Binary file added public/sounds/things/slide-projector.mp3
Binary file not shown.
Binary file added public/sounds/urban/fireworks.mp3
Binary file not shown.
15 changes: 14 additions & 1 deletion src/data/sounds/places.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
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 { GiVillage } from 'react-icons/gi/index';
import {
MdTempleBuddhist,
MdConstruction,
MdLocationPin,
} from 'react-icons/md/index';
import { HiOfficeBuilding } from 'react-icons/hi/index';

import type { Category } from '../types';

Expand Down Expand Up @@ -62,6 +63,18 @@ export const places: Category = {
label: 'Night Village',
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',
};
8 changes: 7 additions & 1 deletion src/data/sounds/things.tsx
Original file line number Diff line number Diff line change
@@ -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 { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index';
import { MdSmartToy } from 'react-icons/md/index';
Expand Down Expand Up @@ -60,6 +60,12 @@ export const things: Category = {
label: 'Dryer',
src: '/sounds/things/dryer.mp3',
},
{
icon: <GiFilmProjector />,
id: 'slide-projector',
label: 'Slide Projector',
src: '/sounds/things/slide-projector.mp3',
},
],
title: 'Things',
};
7 changes: 7 additions & 0 deletions src/data/sounds/urban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { BiSolidTraffic } from 'react-icons/bi/index';
import { FaCity, FaRoad } from 'react-icons/fa/index';
import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index';
import { BsSoundwave, BsPeopleFill } from 'react-icons/bs/index';
import { RiSparkling2Fill } from 'react-icons/ri/index';

import type { Category } from '../types';

Expand Down Expand Up @@ -45,6 +46,12 @@ export const urban: Category = {
label: 'Traffic',
src: '/sounds/urban/traffic.mp3',
},
{
icon: <RiSparkling2Fill />,
id: 'fireworks',
label: 'Fireworks',
src: '/sounds/urban/fireworks.mp3',
},
],
title: 'Urban',
};

0 comments on commit cd05704

Please sign in to comment.