forked from uptimekit/uptimekit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsponsor.config.js
More file actions
67 lines (64 loc) · 1.12 KB
/
sponsor.config.js
File metadata and controls
67 lines (64 loc) · 1.12 KB
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
64
65
66
67
/** @type {import('sponsorkit').SponsorkitConfig} */
export default {
outputDir: ".github/sponsors",
formats: ["svg", "png"],
github: {
login: "stripsior",
type: "user",
},
tiers: [
{
title: "Gold Sponsors",
monthlyDollars: 100,
preset: {
avatar: { size: 80 },
boxWidth: 100,
boxHeight: 100,
container: { sidePadding: 30 },
},
composeInTier: true,
composer: "circles",
},
{
title: "Silver Sponsors",
monthlyDollars: 50,
preset: {
avatar: { size: 60 },
boxWidth: 80,
boxHeight: 80,
container: { sidePadding: 25 },
},
composeInTier: true,
composer: "circles",
},
{
title: "Bronze Sponsors",
monthlyDollars: 10,
preset: {
avatar: { size: 45 },
boxWidth: 60,
boxHeight: 60,
container: { sidePadding: 20 },
},
composeInTier: true,
composer: "circles",
},
{
title: "Supporters",
preset: {
avatar: { size: 35 },
boxWidth: 50,
boxHeight: 50,
container: { sidePadding: 15 },
},
composeInTier: true,
composer: "circles",
},
],
renders: [
{
name: "sponsors",
width: 800,
},
],
};