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 Dec 27, 2023
1 parent 318e87c commit 55e7f05
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 3 deletions.
Binary file added public/sounds/animals/cat-purring.mp3
Binary file not shown.
Binary file added public/sounds/animals/horse-galopp.mp3
Binary file not shown.
Binary file added public/sounds/urban/construction-site.mp3
Binary file not shown.
Binary file added public/sounds/urban/crowd.mp3
Binary file not shown.
Binary file added public/sounds/urban/sailboat.mp3
Binary file not shown.
Binary file added public/sounds/urban/submarine.mp3
Binary file not shown.
Binary file added public/sounds/urban/traffic.mp3
Binary file not shown.
14 changes: 13 additions & 1 deletion src/data/sounds/animals.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index';
import { FaDog, FaFrog } from 'react-icons/fa/index';
import { FaDog, FaFrog, FaHorseHead, FaCat } from 'react-icons/fa/index';
import { PiBirdFill, PiDogBold } from 'react-icons/pi/index';

import type { Category } from '../types';
Expand Down Expand Up @@ -50,6 +50,18 @@ export const animals: Category = {
label: 'Dog Barking',
src: '/sounds/animals/dog-barking.mp3',
},
{
icon: <FaHorseHead />,
id: 'horse-galopp',
label: 'Horse Galopp',
src: '/sounds/animals/horse-galopp.mp3',
},
{
icon: <FaCat />,
id: 'cat-purring',
label: 'Cat Purring',
src: '/sounds/animals/cat-purring.mp3',
},
],
title: 'Animals',
};
36 changes: 34 additions & 2 deletions src/data/sounds/urban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import {
BiSolidCoffeeAlt,
BiSolidTrain,
BiSolidPlaneAlt,
BiSolidTraffic,
} from 'react-icons/bi/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 { MdTempleBuddhist, MdConstruction } from 'react-icons/md';
import { BsSoundwave, BsPeopleFill } from 'react-icons/bs/index';
import { GiSubmarine, GiSailboat } from 'react-icons/gi/index';

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

Expand Down Expand Up @@ -80,6 +82,36 @@ export const urban: Category = {
label: 'Busy Street',
src: '/sounds/urban/busy-street.mp3',
},
{
icon: <MdConstruction />,
id: 'construction-site',
label: 'Construction Site',
src: '/sounds/urban/construction-site.mp3',
},
{
icon: <GiSubmarine />,
id: 'submarine',
label: 'Submarine',
src: '/sounds/urban/submarine.mp3',
},
{
icon: <GiSailboat />,
id: 'sailboat',
label: 'Sailboat',
src: '/sounds/urban/sailboat.mp3',
},
{
icon: <BsPeopleFill />,
id: 'crowd',
label: 'Crowd',
src: '/sounds/urban/crowd.mp3',
},
{
icon: <BiSolidTraffic />,
id: 'traffic',
label: 'Traffic',
src: '/sounds/urban/traffic.mp3',
},
],
title: 'Urban',
};

0 comments on commit 55e7f05

Please sign in to comment.