-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
47 lines (47 loc) · 1.45 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export default {
items: [
{
link: 'https://github.com/WiSchLabs',
text_color: '#FFFFFF',
description: 'Our profile page on GitHub',
background_logo: 'GitHub_white.svg',
background_color: '#000000',
},
{
link: 'https://github.com/WiSchLabs/Kicktipper',
description: 'Calculating tips for football predictions games on Kicktipp',
background_logo: 'Kicktipper.png',
background_color: '#999999',
},
{
link: 'https://github.com/WiSchLabs/Locality-finder',
text_color: '#FFFFFF',
description: 'Django based webpage for finding local events',
background_logo: 'LocalityFinder_white.png',
background_color: '#009688',
},
{
link: 'https://github.com/WiSchLabs/Sudoklin',
text_color: '#000000',
description: 'Kotlin based Sudoku solver',
background_logo: 'Sudoklin_.png',
background_logo_size: 'contain',
background_color: '#FFFFFF',
},
{
link: 'https://github.com/WiSchLabs/beat-the-host',
description: 'This is a Vue3-based game inspired by Schlag den Raab.',
background_logo: 'BeatTheHost.png',
},
{
link: 'https://github.com/WiSchLabs/ofm_helper',
text_color: '#FFFFFF',
description: 'Django based helper tool for onlinefussballmanager.de',
background_logo: 'OFM_Helper_sw.png',
background_color: '#239123',
},
],
settings: {
default_link_target: '_blank',
},
};