mirror of
				https://github.com/remvze/moodist.git
				synced 2025-11-03 19:17:04 -05:00 
			
		
		
		
	chore: add more sounds
This commit is contained in:
		
							parent
							
								
									f682a910da
								
							
						
					
					
						commit
						01b4bdbb57
					
				
							
								
								
									
										
											BIN
										
									
								
								public/sounds/animals/crows.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/sounds/animals/crows.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/sounds/places/crowded-bar.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/sounds/places/crowded-bar.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/sounds/places/night-village.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/sounds/places/night-village.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/sounds/things/dryer.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/sounds/things/dryer.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@ -1,5 +1,11 @@
 | 
			
		||||
import { GiCricket, GiSeagull, GiWolfHead, GiOwl } from 'react-icons/gi/index';
 | 
			
		||||
import { FaDog, FaFrog, FaHorseHead, FaCat } from 'react-icons/fa/index';
 | 
			
		||||
import {
 | 
			
		||||
  FaDog,
 | 
			
		||||
  FaFrog,
 | 
			
		||||
  FaHorseHead,
 | 
			
		||||
  FaCat,
 | 
			
		||||
  FaCrow,
 | 
			
		||||
} from 'react-icons/fa/index';
 | 
			
		||||
import { PiBirdFill, PiDogBold } from 'react-icons/pi/index';
 | 
			
		||||
 | 
			
		||||
import type { Category } from '../types';
 | 
			
		||||
@ -62,6 +68,12 @@ export const animals: Category = {
 | 
			
		||||
      label: 'Cat Purring',
 | 
			
		||||
      src: '/sounds/animals/cat-purring.mp3',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      icon: <FaCrow />,
 | 
			
		||||
      id: 'crows',
 | 
			
		||||
      label: 'Crows',
 | 
			
		||||
      src: '/sounds/animals/crows.mp3',
 | 
			
		||||
    },
 | 
			
		||||
  ],
 | 
			
		||||
  title: 'Animals',
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -40,7 +40,7 @@ export const nature: Category = {
 | 
			
		||||
      src: '/sounds/nature/howling-wind.mp3',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      icon: <FaWind />,
 | 
			
		||||
      icon: <BiSolidTree />,
 | 
			
		||||
      id: 'wind-in-trees',
 | 
			
		||||
      label: 'Wind in Trees',
 | 
			
		||||
      src: '/sounds/nature/wind-in-trees.mp3',
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,7 @@
 | 
			
		||||
import { BiSolidCoffeeAlt, BiSolidPlaneAlt } from 'react-icons/bi/index';
 | 
			
		||||
import { FaChurch } from 'react-icons/fa/index';
 | 
			
		||||
import { TbScubaMask } from 'react-icons/tb/index';
 | 
			
		||||
import { TbScubaMask, TbBeerFilled } from 'react-icons/tb/index';
 | 
			
		||||
import { GiVillage } from 'react-icons/gi/index';
 | 
			
		||||
import {
 | 
			
		||||
  MdTempleBuddhist,
 | 
			
		||||
  MdConstruction,
 | 
			
		||||
@ -49,6 +50,18 @@ export const places: Category = {
 | 
			
		||||
      label: 'Underwater',
 | 
			
		||||
      src: '/sounds/places/underwater.mp3',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      icon: <TbBeerFilled />,
 | 
			
		||||
      id: 'crowded-bar',
 | 
			
		||||
      label: 'Crowded Bar',
 | 
			
		||||
      src: '/sounds/places/crowded-bar.mp3',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      icon: <GiVillage />,
 | 
			
		||||
      id: 'night-village',
 | 
			
		||||
      label: 'Night Village',
 | 
			
		||||
      src: '/sounds/places/night-village.mp3',
 | 
			
		||||
    },
 | 
			
		||||
  ],
 | 
			
		||||
  title: 'Places',
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -4,6 +4,7 @@ import { FaKeyboard, FaClock, FaFan } 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';
 | 
			
		||||
import { BiSolidDryer } from 'react-icons/bi/index';
 | 
			
		||||
 | 
			
		||||
import type { Category } from '../types';
 | 
			
		||||
 | 
			
		||||
@ -53,6 +54,12 @@ export const things: Category = {
 | 
			
		||||
      label: 'Ceiling Fan',
 | 
			
		||||
      src: '/sounds/things/ceiling-fan.mp3',
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      icon: <BiSolidDryer />,
 | 
			
		||||
      id: 'dryer',
 | 
			
		||||
      label: 'Dryer',
 | 
			
		||||
      src: '/sounds/things/dryer.mp3',
 | 
			
		||||
    },
 | 
			
		||||
  ],
 | 
			
		||||
  title: 'Things',
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user