chore: add binaural beats

This commit is contained in:
MAZE 2024-02-01 20:16:47 +03:30
parent 38f6f7dbe6
commit f1d212abc8
7 changed files with 54 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -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,
],
}; };

View 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',
};