chore: relocate underwater audio

This commit is contained in:
MAZE 2023-12-28 22:19:23 +03:30
parent c1c3945d43
commit 37bad8149e
3 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,6 @@ import { GiWaterfall } from 'react-icons/gi/index';
import { BsFire, BsFillDropletFill } from 'react-icons/bs/index'; import { BsFire, BsFillDropletFill } from 'react-icons/bs/index';
import { BiSolidTree, BiWater } from 'react-icons/bi/index'; import { BiSolidTree, BiWater } from 'react-icons/bi/index';
import { FaWater, FaWind, FaLeaf, FaRegSnowflake } from 'react-icons/fa/index'; import { FaWater, FaWind, FaLeaf, FaRegSnowflake } from 'react-icons/fa/index';
import { TbScubaMask } from 'react-icons/tb/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -52,12 +51,6 @@ export const nature: Category = {
label: 'Waterfall', label: 'Waterfall',
src: '/sounds/nature/waterfall.mp3', src: '/sounds/nature/waterfall.mp3',
}, },
{
icon: <TbScubaMask />,
id: 'underwater',
label: 'Underwater',
src: '/sounds/nature/underwater.mp3',
},
{ {
icon: <FaRegSnowflake />, icon: <FaRegSnowflake />,
id: 'walk-in-snow', id: 'walk-in-snow',

View file

@ -1,5 +1,6 @@
import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index'; import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index';
import { FaChurch } from 'react-icons/fa/index'; import { FaChurch } from 'react-icons/fa/index';
import { TbScubaMask } from 'react-icons/tb/index';
import { import {
MdTempleBuddhist, MdTempleBuddhist,
MdConstruction, MdConstruction,
@ -42,6 +43,12 @@ export const places: Category = {
label: 'Construction Site', label: 'Construction Site',
src: '/sounds/places/construction-site.mp3', src: '/sounds/places/construction-site.mp3',
}, },
{
icon: <TbScubaMask />,
id: 'underwater',
label: 'Underwater',
src: '/sounds/places/underwater.mp3',
},
], ],
title: 'Places', title: 'Places',
}; };