mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
chore: add more sounds
This commit is contained in:
parent
318e87c9f1
commit
55e7f05892
9 changed files with 47 additions and 3 deletions
BIN
public/sounds/animals/cat-purring.mp3
Normal file
BIN
public/sounds/animals/cat-purring.mp3
Normal file
Binary file not shown.
BIN
public/sounds/animals/horse-galopp.mp3
Normal file
BIN
public/sounds/animals/horse-galopp.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/construction-site.mp3
Normal file
BIN
public/sounds/urban/construction-site.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/crowd.mp3
Normal file
BIN
public/sounds/urban/crowd.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/sailboat.mp3
Normal file
BIN
public/sounds/urban/sailboat.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/submarine.mp3
Normal file
BIN
public/sounds/urban/submarine.mp3
Normal file
Binary file not shown.
BIN
public/sounds/urban/traffic.mp3
Normal file
BIN
public/sounds/urban/traffic.mp3
Normal file
Binary file not shown.
|
|
@ -1,5 +1,5 @@
|
||||||
import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index';
|
import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index';
|
||||||
import { FaDog, FaFrog } from 'react-icons/fa/index';
|
import { FaDog, FaFrog, FaHorseHead, FaCat } from 'react-icons/fa/index';
|
||||||
import { PiBirdFill, PiDogBold } from 'react-icons/pi/index';
|
import { PiBirdFill, PiDogBold } from 'react-icons/pi/index';
|
||||||
|
|
||||||
import type { Category } from '../types';
|
import type { Category } from '../types';
|
||||||
|
|
@ -50,6 +50,18 @@ export const animals: Category = {
|
||||||
label: 'Dog Barking',
|
label: 'Dog Barking',
|
||||||
src: '/sounds/animals/dog-barking.mp3',
|
src: '/sounds/animals/dog-barking.mp3',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: <FaHorseHead />,
|
||||||
|
id: 'horse-galopp',
|
||||||
|
label: 'Horse Galopp',
|
||||||
|
src: '/sounds/animals/horse-galopp.mp3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <FaCat />,
|
||||||
|
id: 'cat-purring',
|
||||||
|
label: 'Cat Purring',
|
||||||
|
src: '/sounds/animals/cat-purring.mp3',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
title: 'Animals',
|
title: 'Animals',
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,13 @@ import {
|
||||||
BiSolidCoffeeAlt,
|
BiSolidCoffeeAlt,
|
||||||
BiSolidTrain,
|
BiSolidTrain,
|
||||||
BiSolidPlaneAlt,
|
BiSolidPlaneAlt,
|
||||||
|
BiSolidTraffic,
|
||||||
} from 'react-icons/bi/index';
|
} from 'react-icons/bi/index';
|
||||||
import { FaCity, FaRoad, FaChurch } from 'react-icons/fa/index';
|
import { FaCity, FaRoad, FaChurch } from 'react-icons/fa/index';
|
||||||
import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index';
|
import { PiRoadHorizonFill, PiSirenBold } from 'react-icons/pi/index';
|
||||||
import { MdTempleBuddhist } from 'react-icons/md';
|
import { MdTempleBuddhist, MdConstruction } from 'react-icons/md';
|
||||||
import { BsSoundwave } from 'react-icons/bs/index';
|
import { BsSoundwave, BsPeopleFill } from 'react-icons/bs/index';
|
||||||
|
import { GiSubmarine, GiSailboat } from 'react-icons/gi/index';
|
||||||
|
|
||||||
import type { Category } from '../types';
|
import type { Category } from '../types';
|
||||||
|
|
||||||
|
|
@ -80,6 +82,36 @@ export const urban: Category = {
|
||||||
label: 'Busy Street',
|
label: 'Busy Street',
|
||||||
src: '/sounds/urban/busy-street.mp3',
|
src: '/sounds/urban/busy-street.mp3',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: <MdConstruction />,
|
||||||
|
id: 'construction-site',
|
||||||
|
label: 'Construction Site',
|
||||||
|
src: '/sounds/urban/construction-site.mp3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <GiSubmarine />,
|
||||||
|
id: 'submarine',
|
||||||
|
label: 'Submarine',
|
||||||
|
src: '/sounds/urban/submarine.mp3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <GiSailboat />,
|
||||||
|
id: 'sailboat',
|
||||||
|
label: 'Sailboat',
|
||||||
|
src: '/sounds/urban/sailboat.mp3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BsPeopleFill />,
|
||||||
|
id: 'crowd',
|
||||||
|
label: 'Crowd',
|
||||||
|
src: '/sounds/urban/crowd.mp3',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BiSolidTraffic />,
|
||||||
|
id: 'traffic',
|
||||||
|
label: 'Traffic',
|
||||||
|
src: '/sounds/urban/traffic.mp3',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
title: 'Urban',
|
title: 'Urban',
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue