diff --git a/public/sounds/nature/droplets.mp3 b/public/sounds/nature/droplets.mp3
new file mode 100644
index 0000000..c14c296
Binary files /dev/null and b/public/sounds/nature/droplets.mp3 differ
diff --git a/public/sounds/things/heartbeat.mp3 b/public/sounds/things/heartbeat.mp3
new file mode 100644
index 0000000..a96db02
Binary files /dev/null and b/public/sounds/things/heartbeat.mp3 differ
diff --git a/src/data/sounds/nature.tsx b/src/data/sounds/nature.tsx
index 8ed14fb..4cfd1ca 100644
--- a/src/data/sounds/nature.tsx
+++ b/src/data/sounds/nature.tsx
@@ -1,5 +1,5 @@
import { GiWaterfall } from 'react-icons/gi/index';
-import { BsFire } from 'react-icons/bs/index';
+import { BsFire, BsFillDropletFill } from 'react-icons/bs/index';
import { BiSolidTree, BiWater } from 'react-icons/bi/index';
import { FaWater, FaWind, FaLeaf, FaRegSnowflake } from 'react-icons/fa/index';
import { TbScubaMask, TbSailboat } from 'react-icons/tb/index';
@@ -76,6 +76,12 @@ export const nature: Category = {
label: 'Rowing Boat',
src: '/sounds/nature/rowing-boat.mp3',
},
+ {
+ icon: ,
+ id: 'droplets',
+ label: 'Droplets',
+ src: '/sounds/nature/droplets.mp3',
+ },
],
title: 'Nature',
};
diff --git a/src/data/sounds/things.tsx b/src/data/sounds/things.tsx
index 32fd917..3eff393 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, FaFan } from 'react-icons/fa/index';
+import { FaKeyboard, FaClock, FaFan, FaHeartbeat } 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';
@@ -53,6 +53,12 @@ export const things: Category = {
label: 'Ceiling Fan',
src: '/sounds/things/ceiling-fan.mp3',
},
+ {
+ icon: ,
+ id: 'heartbeat',
+ label: 'Heartbeat',
+ src: '/sounds/things/heartbeat.mp3',
+ },
],
title: 'Things',
};