personal-website/js/data.js

41 lines
920 B
JavaScript
Raw Normal View History

2024-04-20 09:13:46 -05:00
const LINKS = {
'gitea': 'https://git.sador.me/sadorowo',
2024-04-20 09:13:46 -05:00
'instagram': 'https://instagram.com/sadorowo',
2024-06-18 14:13:07 -05:00
'matrix': 'https://matrix.sador.me',
2024-06-02 09:00:29 -05:00
'email': 'mailto:contact@sador.me',
2024-04-20 09:13:46 -05:00
}
const MUSIC_METADATA = [
{
name: 'heavy metal',
aliases: ['hm', 'heavy'],
artists: [
'Poisonblack',
'Metallica'
]
},
{
name: 'depressive suicidal black metal',
aliases: ['dsbm'],
artists: [
'Totalselfhatred',
'Lifelover',
'минута агонии',
'Decalius'
]
},
{
name: 'black metal',
aliases: ['bm', 'black'],
artists: [
'Behemoth',
'Venom',
'Mgła',
'Watain',
'Bathory',
'Carpathian Forest',
'Darkthrone',
'Rotting Christ'
]
}
]