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 Dec 27, 2023
1 parent 55e7f05 commit e3864be
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
Binary file added public/sounds/nature/droplets.mp3
Binary file not shown.
Binary file added public/sounds/things/heartbeat.mp3
Binary file not shown.
8 changes: 7 additions & 1 deletion src/data/sounds/nature.tsx
Original file line number Diff line number Diff line change
@@ -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';
Expand Down Expand Up @@ -76,6 +76,12 @@ export const nature: Category = {
label: 'Rowing Boat',
src: '/sounds/nature/rowing-boat.mp3',
},
{
icon: <BsFillDropletFill />,
id: 'droplets',
label: 'Droplets',
src: '/sounds/nature/droplets.mp3',
},
],
title: 'Nature',
};
8 changes: 7 additions & 1 deletion src/data/sounds/things.tsx
Original file line number Diff line number Diff line change
@@ -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';
Expand Down Expand Up @@ -53,6 +53,12 @@ export const things: Category = {
label: 'Ceiling Fan',
src: '/sounds/things/ceiling-fan.mp3',
},
{
icon: <FaHeartbeat />,
id: 'heartbeat',
label: 'Heartbeat',
src: '/sounds/things/heartbeat.mp3',
},
],
title: 'Things',
};

0 comments on commit e3864be

Please sign in to comment.