generated from Open-reSource/sponsorkit-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsor.config.ts
63 lines (61 loc) · 1.09 KB
/
sponsor.config.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
54
55
56
57
58
59
60
61
62
63
import { BadgePreset, defineConfig, tierPresets } from 'sponsorkit'
const past: BadgePreset = {
avatar: {
size: 20,
},
boxWidth: 22,
boxHeight: 22,
container: {
sidePadding: 35,
},
}
export default defineConfig({
github: {
login: 'Open-reSource',
type: 'organization',
},
tiers: [
{
title: 'Past Sponsors',
monthlyDollars: -1,
preset: past,
},
{
title: 'Backers',
preset: tierPresets.small,
},
{
title: 'Sponsors',
monthlyDollars: 10,
preset: {
avatar: {
size: 42,
},
boxWidth: 52,
boxHeight: 52,
container: {
sidePadding: 30,
},
}
},
{
title: 'Silver Sponsors',
monthlyDollars: 50,
preset: tierPresets.medium,
},
{
title: 'Gold Sponsors',
monthlyDollars: 100,
preset: tierPresets.large,
},
{
title: 'Platinum Sponsors',
monthlyDollars: 500,
preset: tierPresets.xl,
},
{
title: 'Special Sponsor',
monthlyDollars: Infinity,
},
]
})