diff --git a/public/sounds/animals/dog-barking.mp3 b/public/sounds/animals/dog-barking.mp3
new file mode 100644
index 0000000..d29dc72
Binary files /dev/null and b/public/sounds/animals/dog-barking.mp3 differ
diff --git a/public/sounds/things/ceiling-fan.mp3 b/public/sounds/things/ceiling-fan.mp3
new file mode 100644
index 0000000..855f424
Binary files /dev/null and b/public/sounds/things/ceiling-fan.mp3 differ
diff --git a/public/sounds/urban/busy-street.mp3 b/public/sounds/urban/busy-street.mp3
new file mode 100644
index 0000000..67522cf
Binary files /dev/null and b/public/sounds/urban/busy-street.mp3 differ
diff --git a/public/sounds/urban/church.mp3 b/public/sounds/urban/church.mp3
new file mode 100644
index 0000000..9bc81e5
Binary files /dev/null and b/public/sounds/urban/church.mp3 differ
diff --git a/public/sounds/urban/temple.mp3 b/public/sounds/urban/temple.mp3
new file mode 100644
index 0000000..fc1f6f1
Binary files /dev/null and b/public/sounds/urban/temple.mp3 differ
diff --git a/src/data/sounds/animals.tsx b/src/data/sounds/animals.tsx
index aa58216..6bc5f64 100644
--- a/src/data/sounds/animals.tsx
+++ b/src/data/sounds/animals.tsx
@@ -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: ,
+ id: 'dog-barking',
+ label: 'Dog Barking',
+ src: '/sounds/animals/dog-barking.mp3',
+ },
],
title: 'Animals',
};
diff --git a/src/data/sounds/things.tsx b/src/data/sounds/things.tsx
index 1bfb2b5..32fd917 100644
--- a/src/data/sounds/things.tsx
+++ b/src/data/sounds/things.tsx
@@ -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: ,
+ id: 'ceiling-fan',
+ label: 'Ceiling Fan',
+ src: '/sounds/things/ceiling-fan.mp3',
+ },
],
title: 'Things',
};
diff --git a/src/data/sounds/urban.tsx b/src/data/sounds/urban.tsx
index b210e9d..6f7d3e9 100644
--- a/src/data/sounds/urban.tsx
+++ b/src/data/sounds/urban.tsx
@@ -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: ,
+ id: 'church',
+ label: 'Church',
+ src: '/sounds/urban/church.mp3',
+ },
+ {
+ icon: ,
+ id: 'temple',
+ label: 'Temple',
+ src: '/sounds/urban/temple.mp3',
+ },
+ {
+ icon: ,
+ id: 'busy-street',
+ label: 'Busy Street',
+ src: '/sounds/urban/busy-street.mp3',
+ },
],
title: 'Urban',
};