diff --git a/public/sounds/nature/underwater.mp3 b/public/sounds/places/underwater.mp3
similarity index 100%
rename from public/sounds/nature/underwater.mp3
rename to public/sounds/places/underwater.mp3
diff --git a/src/data/sounds/nature.tsx b/src/data/sounds/nature.tsx
index 61bb0ab..0798ab6 100644
--- a/src/data/sounds/nature.tsx
+++ b/src/data/sounds/nature.tsx
@@ -2,7 +2,6 @@ import { GiWaterfall } from 'react-icons/gi/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 } from 'react-icons/tb/index';
import type { Category } from '../types';
@@ -52,12 +51,6 @@ export const nature: Category = {
label: 'Waterfall',
src: '/sounds/nature/waterfall.mp3',
},
- {
- icon: ,
- id: 'underwater',
- label: 'Underwater',
- src: '/sounds/nature/underwater.mp3',
- },
{
icon: ,
id: 'walk-in-snow',
diff --git a/src/data/sounds/places.tsx b/src/data/sounds/places.tsx
index 1457905..74dc161 100644
--- a/src/data/sounds/places.tsx
+++ b/src/data/sounds/places.tsx
@@ -1,5 +1,6 @@
import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index';
import { FaChurch } from 'react-icons/fa/index';
+import { TbScubaMask } from 'react-icons/tb/index';
import {
MdTempleBuddhist,
MdConstruction,
@@ -42,6 +43,12 @@ export const places: Category = {
label: 'Construction Site',
src: '/sounds/places/construction-site.mp3',
},
+ {
+ icon: ,
+ id: 'underwater',
+ label: 'Underwater',
+ src: '/sounds/places/underwater.mp3',
+ },
],
title: 'Places',
};