Skip to content

Commit

Permalink
chore: add more sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Jun 14, 2024
1 parent 7e65bb7 commit 095e3c7
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
Binary file added public/sounds/nature/jungle.mp3
Binary file not shown.
Binary file added public/sounds/places/laundry-room.mp3
Binary file not shown.
14 changes: 13 additions & 1 deletion src/data/sounds/nature.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
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 {
FaWater,
FaWind,
FaLeaf,
FaRegSnowflake,
FaTree,
} from 'react-icons/fa/index';

import type { Category } from '../types';

Expand Down Expand Up @@ -69,6 +75,12 @@ export const nature: Category = {
label: 'Droplets',
src: '/sounds/nature/droplets.mp3',
},
{
icon: <FaTree />,
id: 'jungle',
label: 'Jungle',
src: '/sounds/nature/jungle.mp3',
},
],
title: 'Nature',
};
12 changes: 11 additions & 1 deletion src/data/sounds/places.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index';
import {
BiSolidCoffeeAlt,
BiSolidPlaneAlt,
BiSolidDryer,
} from 'react-icons/bi/index';
import { FaChurch, FaSubway, FaShoppingBasket } from 'react-icons/fa/index';
import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index';
import { GiVillage, GiCarousel } from 'react-icons/gi/index';
Expand Down Expand Up @@ -94,6 +98,12 @@ export const places: Category = {
label: 'Laboratory',
src: '/sounds/places/laboratory.mp3',
},
{
icon: <BiSolidDryer />,
id: 'laundry-room',
label: 'Laundry Room',
src: '/sounds/places/laundry-room.mp3',
},
],
title: 'Places',
};

0 comments on commit 095e3c7

Please sign in to comment.