-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
sponsors.ts
53 lines (49 loc) · 1.31 KB
/
sponsors.ts
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
48
49
50
51
52
53
export type Sponsor = { name: string, image: string, url: string }
export type Sponsors = Sporsor[]
export const sponsors: Sponsors = [
{
name: 'CubeSoft, Inc.',
image: 'https://raw.githubusercontent.com/cube-soft/Cube.Core/master/Icon.svg',
url: 'https://www.cube-soft.jp/',
},
]
export const personalSilverSponsors: Sponsors = [
{
name: 'takesako',
image: 'https://github.com/takesako.png',
url: 'https://github.com/takesako',
}, {
name: 'orisano',
image: 'https://github.com/orisano.png',
url: 'https://github.com/orisano',
},
]
export const personalBronzeSponsors: Sponsors = [
{
name: 'Krouton',
image: 'https://github.com/Krout0n.png',
url: 'https://github.com/Krout0n',
},
{
name: 'Kazuki Chigita',
image: 'https://kazuki.chigita.net/chigichan24_2022.png',
url: 'https://kazuki.chigita.net/profile',
},
]
export const personalSponsors: Sponsors = [
{
name: 'くろぐろ',
image: 'https://github.com/k-kuroguro.png',
url: 'https://twitter.com/k_kuroguro',
},
{
name: 'かずひら',
image: 'https://unavatar.io/twitter/kazuhi_ra',
url: 'https://twitter.com/kazuhi_ra',
},
{
name: 'ヒツジのしっぽ',
image: 'https://github.com/hituzi-no-sippo.png',
url: 'https://github.com/hituzi-no-sippo',
},
]