mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 17:04:15 +00:00
chore: add binaural beats
This commit is contained in:
parent
38f6f7dbe6
commit
f1d212abc8
7 changed files with 54 additions and 1 deletions
BIN
public/sounds/binaural/binaural-alpha.wav
Normal file
BIN
public/sounds/binaural/binaural-alpha.wav
Normal file
Binary file not shown.
BIN
public/sounds/binaural/binaural-beta.wav
Normal file
BIN
public/sounds/binaural/binaural-beta.wav
Normal file
Binary file not shown.
BIN
public/sounds/binaural/binaural-delta.wav
Normal file
BIN
public/sounds/binaural/binaural-delta.wav
Normal file
Binary file not shown.
BIN
public/sounds/binaural/binaural-gamma.wav
Normal file
BIN
public/sounds/binaural/binaural-gamma.wav
Normal file
Binary file not shown.
BIN
public/sounds/binaural/binaural-theta.wav
Normal file
BIN
public/sounds/binaural/binaural-theta.wav
Normal file
Binary file not shown.
|
|
@ -6,11 +6,22 @@ import { places } from './sounds/places';
|
||||||
import { transport } from './sounds/transport';
|
import { transport } from './sounds/transport';
|
||||||
import { things } from './sounds/things';
|
import { things } from './sounds/things';
|
||||||
import { noise } from './sounds/noise';
|
import { noise } from './sounds/noise';
|
||||||
|
import { binaural } from './sounds/binaural';
|
||||||
|
|
||||||
import type { Categories } from './types';
|
import type { Categories } from './types';
|
||||||
|
|
||||||
export const sounds: {
|
export const sounds: {
|
||||||
categories: Categories;
|
categories: Categories;
|
||||||
} = {
|
} = {
|
||||||
categories: [nature, rain, animals, urban, places, transport, things, noise],
|
categories: [
|
||||||
|
nature,
|
||||||
|
rain,
|
||||||
|
animals,
|
||||||
|
urban,
|
||||||
|
places,
|
||||||
|
transport,
|
||||||
|
things,
|
||||||
|
noise,
|
||||||
|
binaural,
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
|
||||||
42
src/data/sounds/binaural.tsx
Normal file
42
src/data/sounds/binaural.tsx
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
import { TbWaveSine } from 'react-icons/tb/index';
|
||||||
|
import { BsSoundwave } from 'react-icons/bs/index';
|
||||||
|
|
||||||
|
import type { Category } from '../types';
|
||||||
|
|
||||||
|
export const binaural: Category = {
|
||||||
|
icon: <TbWaveSine />,
|
||||||
|
id: 'binaural',
|
||||||
|
sounds: [
|
||||||
|
{
|
||||||
|
icon: <BsSoundwave />,
|
||||||
|
id: 'binaural-delta',
|
||||||
|
label: 'Delta',
|
||||||
|
src: '/sounds/binaural/binaural-delta.wav',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BsSoundwave />,
|
||||||
|
id: 'binaural-theta',
|
||||||
|
label: 'Theta',
|
||||||
|
src: '/sounds/binaural/binaural-theta.wav',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BsSoundwave />,
|
||||||
|
id: 'binaural-alpha',
|
||||||
|
label: 'Alpha',
|
||||||
|
src: '/sounds/binaural/binaural-alpha.wav',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BsSoundwave />,
|
||||||
|
id: 'binaural-beta',
|
||||||
|
label: 'Beta',
|
||||||
|
src: '/sounds/binaural/binaural-beta.wav',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BsSoundwave />,
|
||||||
|
id: 'binaural-gamma',
|
||||||
|
label: 'Gamma',
|
||||||
|
src: '/sounds/binaural/binaural-gamma.wav',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
title: 'Binaural Beats',
|
||||||
|
};
|
||||||
Loading…
Add table
Reference in a new issue