diff --git a/public/sounds/urban/airport.mp3 b/public/sounds/urban/airport.mp3
new file mode 100644
index 0000000..30f3020
Binary files /dev/null and b/public/sounds/urban/airport.mp3 differ
diff --git a/public/sounds/urban/cafe.mp3 b/public/sounds/urban/cafe.mp3
new file mode 100644
index 0000000..27db46d
Binary files /dev/null and b/public/sounds/urban/cafe.mp3 differ
diff --git a/public/sounds/urban/highway.mp3 b/public/sounds/urban/highway.mp3
new file mode 100644
index 0000000..7537c7d
Binary files /dev/null and b/public/sounds/urban/highway.mp3 differ
diff --git a/public/sounds/urban/inside-a-train.mp3 b/public/sounds/urban/inside-a-train.mp3
new file mode 100644
index 0000000..23d94f4
Binary files /dev/null and b/public/sounds/urban/inside-a-train.mp3 differ
diff --git a/public/sounds/urban/road.mp3 b/public/sounds/urban/road.mp3
new file mode 100644
index 0000000..414f153
Binary files /dev/null and b/public/sounds/urban/road.mp3 differ
diff --git a/public/sounds/urban/train.mp3 b/public/sounds/urban/train.mp3
new file mode 100644
index 0000000..46e97cc
Binary files /dev/null and b/public/sounds/urban/train.mp3 differ
diff --git a/src/data/sounds.tsx b/src/data/sounds.tsx
index b2a6cf6..aa40b4c 100644
--- a/src/data/sounds.tsx
+++ b/src/data/sounds.tsx
@@ -13,9 +13,27 @@ import {
BsFillCloudRainHeavyFill,
BsUmbrellaFill,
} from 'react-icons/bs/index';
-import { BiSolidTree, BiWater } from 'react-icons/bi/index';
-import { FaWater, FaWind, FaLeaf, FaDog, FaFrog } from 'react-icons/fa/index';
-import { PiBirdFill, PiTentFill } from 'react-icons/pi/index';
+import {
+ BiSolidTree,
+ BiWater,
+ BiSolidCoffeeAlt,
+ BiSolidTrain,
+ BiSolidPlaneAlt,
+} from 'react-icons/bi/index';
+import {
+ FaWater,
+ FaWind,
+ FaLeaf,
+ FaDog,
+ FaFrog,
+ FaCity,
+ FaRoad,
+} from 'react-icons/fa/index';
+import {
+ PiBirdFill,
+ PiTentFill,
+ PiRoadHorizonFill,
+} from 'react-icons/pi/index';
import { MdOutlineThunderstorm } from 'react-icons/md/index';
import { TbScubaMask } from 'react-icons/tb/index';
@@ -168,5 +186,48 @@ export const sounds: {
],
title: 'Animals',
},
+ {
+ icon: ,
+ id: 'urban',
+ sounds: [
+ {
+ icon: ,
+ id: 'cafe',
+ label: 'Cafe',
+ src: '/sounds/urban/cafe.mp3',
+ },
+ {
+ icon: ,
+ id: 'highway',
+ label: 'Highway',
+ src: '/sounds/urban/highway.mp3',
+ },
+ {
+ icon: ,
+ id: 'road',
+ label: 'Road',
+ src: '/sounds/urban/road.mp3',
+ },
+ {
+ icon: ,
+ id: 'train',
+ label: 'Train',
+ src: '/sounds/urban/train.mp3',
+ },
+ {
+ icon: ,
+ id: 'inside-a-train',
+ label: 'Inside a Train',
+ src: '/sounds/urban/inside-a-train.mp3',
+ },
+ {
+ icon: ,
+ id: 'airport',
+ label: 'Airport',
+ src: '/sounds/urban/airport.mp3',
+ },
+ ],
+ title: 'Urban',
+ },
],
};