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 Jan 30, 2024
1 parent 937bf29 commit 38f6f7d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
Binary file added public/sounds/things/morse-code.mp3
Binary file not shown.
Binary file added public/sounds/things/tuning-radio.mp3
Binary file not shown.
15 changes: 14 additions & 1 deletion src/data/sounds/things.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { GiWindchimes, GiFilmProjector } from 'react-icons/gi/index';
import { BsFillKeyboardFill } from 'react-icons/bs/index';
import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index';
import { MdSmartToy, MdWaterDrop } from 'react-icons/md/index';
import { MdSmartToy, MdWaterDrop, MdRadio } from 'react-icons/md/index';
import { TbBowlFilled } from 'react-icons/tb/index';
import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index';
import { BiSolidDryer } from 'react-icons/bi/index';
import { IoIosRadio } from 'react-icons/io/index';

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

Expand Down Expand Up @@ -78,6 +79,18 @@ export const things: Category = {
label: 'Bubbles',
src: '/sounds/things/bubbles.mp3',
},
{
icon: <MdRadio />,
id: 'tuning-radio',
label: 'Tuning Radio',
src: '/sounds/things/tuning-radio.mp3',
},
{
icon: <IoIosRadio />,
id: 'morse-code',
label: 'Morse Code',
src: '/sounds/things/morse-code.mp3',
},
],
title: 'Things',
};

0 comments on commit 38f6f7d

Please sign in to comment.