@brillout/docpress 0.8.15 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Layout.tsx +2 -2
- package/MenuModal.tsx +15 -1
- package/components/Note.tsx +6 -2
- package/components/index.ts +0 -5
- package/dist/Layout.js +2 -2
- package/dist/MenuModal.d.ts +2 -0
- package/dist/MenuModal.js +14 -1
- package/dist/components/Note.js +4 -3
- package/dist/components/index.d.ts +0 -5
- package/dist/components/index.js +0 -5
- package/index.ts +11 -2
- package/package.json +2 -3
- package/components/Consulting.tsx +0 -47
- package/components/Contributors.tsx +0 -119
- package/components/ReadingRecommendation.tsx +0 -57
- package/components/Sponsors/label.draft.svg +0 -108
- package/components/Sponsors/label.svg +0 -5
- package/components/Sponsors/medalBronze.svg +0 -65
- package/components/Sponsors/medalGold.svg +0 -65
- package/components/Sponsors/medalSilver.svg +0 -65
- package/components/Sponsors.tsx +0 -218
- package/components/Supporters.tsx +0 -136
- package/data/maintainersList.tsx +0 -92
- package/data/sponsorsList/companyLogos/alignable.svg +0 -19
- package/data/sponsorsList/companyLogos/bluefin.svg +0 -53
- package/data/sponsorsList/companyLogos/burdaforward.png +0 -0
- package/data/sponsorsList/companyLogos/contra.svg +0 -1
- package/data/sponsorsList/companyLogos/ecosia.svg +0 -1
- package/data/sponsorsList/companyLogos/inlang.png +0 -0
- package/data/sponsorsList/companyLogos/optimizers.svg +0 -17
- package/data/sponsorsList/companyLogos/sourcegraph.svg +0 -1
- package/data/sponsorsList.ts +0 -147
- package/dist/components/Consulting.d.ts +0 -4
- package/dist/components/Consulting.js +0 -39
- package/dist/components/Contributors.d.ts +0 -7
- package/dist/components/Contributors.js +0 -78
- package/dist/components/ReadingRecommendation.d.ts +0 -6
- package/dist/components/ReadingRecommendation.js +0 -40
- package/dist/components/Sponsors.d.ts +0 -22
- package/dist/components/Sponsors.js +0 -161
- package/dist/components/Supporters.d.ts +0 -32
- package/dist/components/Supporters.js +0 -80
- package/dist/data/maintainersList.d.ts +0 -9
- package/dist/data/maintainersList.js +0 -83
- package/dist/data/sponsorsList.d.ts +0 -3
- package/dist/data/sponsorsList.js +0 -151
- package/icons/heart.svg +0 -1
- package/icons/people.svg +0 -9
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
export { Sponsors };
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import iconHeart from '../icons/heart.svg';
|
|
4
|
-
import { usePageContext } from '../renderer/usePageContext';
|
|
5
|
-
import { assert, Emoji } from '../utils/server';
|
|
6
|
-
import { Supporter, SupporterSection, SectionDescription, Individuals, SupporterImg, CallToAction } from './Supporters';
|
|
7
|
-
import medalGold from './Sponsors/medalGold.svg';
|
|
8
|
-
import medalSilver from './Sponsors/medalSilver.svg';
|
|
9
|
-
import medalBronze from './Sponsors/medalBronze.svg';
|
|
10
|
-
import labelBgImg from './Sponsors/label.svg';
|
|
11
|
-
import { sponsorsList } from '../data/sponsorsList';
|
|
12
|
-
function Sponsors() {
|
|
13
|
-
var pageContext = usePageContext();
|
|
14
|
-
var projectInfo = pageContext.config.projectInfo;
|
|
15
|
-
var sponsorGithubAccount = pageContext.config.sponsorGithubAccount || 'brillout';
|
|
16
|
-
var sponsorsCompanies = sponsorsList.filter(isCompany);
|
|
17
|
-
var sponsorsIndividuals = sponsorsList.filter(isIndividual);
|
|
18
|
-
return (React.createElement(SupporterSection, null,
|
|
19
|
-
React.createElement(CallToAction, { iconUrl: iconHeart, text: "Sponsor", href: "https://github.com/sponsors/".concat(sponsorGithubAccount) }),
|
|
20
|
-
React.createElement("div", null),
|
|
21
|
-
React.createElement(SectionDescription, null,
|
|
22
|
-
projectInfo.projectName,
|
|
23
|
-
" is free and open source, made possible by wonderful sponsors."),
|
|
24
|
-
React.createElement("div", { style: { display: 'flex', flexWrap: 'wrap', justifyContent: 'space-evenly', alignItems: 'end' } }, sponsorsCompanies.map(function (sponsor, i) { return (React.createElement(SponsorDiv, { sponsor: sponsor, key: i })); })),
|
|
25
|
-
React.createElement(Individuals, null, sponsorsIndividuals.map(function (sponsor, i) { return (React.createElement(SponsorDiv, { sponsor: sponsor, key: i })); }))));
|
|
26
|
-
}
|
|
27
|
-
function SponsorDiv(_a) {
|
|
28
|
-
var sponsor = _a.sponsor;
|
|
29
|
-
if (isIndividual(sponsor)) {
|
|
30
|
-
return React.createElement(Supporter, { username: sponsor.username });
|
|
31
|
-
}
|
|
32
|
-
return React.createElement(CompanyDiv, { sponsor: sponsor });
|
|
33
|
-
}
|
|
34
|
-
function CompanyDiv(_a) {
|
|
35
|
-
var sponsor = _a.sponsor;
|
|
36
|
-
assert(isCompany(sponsor));
|
|
37
|
-
var imgSrc = sponsor.companyLogo;
|
|
38
|
-
var imgAlt = sponsor.companyName;
|
|
39
|
-
var _b = getSize(sponsor), width = _b.width, height = _b.height, padding = _b.padding;
|
|
40
|
-
var marginHeight = 20;
|
|
41
|
-
var marginWidth = 10;
|
|
42
|
-
return (React.createElement("a", { href: sponsor.website, style: {
|
|
43
|
-
margin: "".concat(marginHeight, "px ").concat(marginWidth, "px"),
|
|
44
|
-
} },
|
|
45
|
-
React.createElement(Label, { sponsor: sponsor }),
|
|
46
|
-
React.createElement("div", { style: {
|
|
47
|
-
backgroundColor: '#ebebeb',
|
|
48
|
-
borderRadius: 7,
|
|
49
|
-
overflow: 'hidden',
|
|
50
|
-
width: width,
|
|
51
|
-
maxWidth: "calc(100vw - 2 * var(--main-view-padding) - 2 * ".concat(marginWidth, "px)"),
|
|
52
|
-
height: height,
|
|
53
|
-
display: 'flex',
|
|
54
|
-
alignItems: 'center',
|
|
55
|
-
flexDirection: 'column',
|
|
56
|
-
justifyContent: 'center',
|
|
57
|
-
} },
|
|
58
|
-
React.createElement(SupporterImg, { imgSrc: imgSrc, imgAlt: imgAlt, width: width, height: height, padding: padding }))));
|
|
59
|
-
}
|
|
60
|
-
function Label(_a) {
|
|
61
|
-
var sponsor = _a.sponsor;
|
|
62
|
-
assert(isCompany(sponsor));
|
|
63
|
-
var labelBg = getLabelBg(sponsor);
|
|
64
|
-
var labelIcon = getLabelIcon(sponsor);
|
|
65
|
-
var labelText = getLabelText(sponsor);
|
|
66
|
-
return (React.createElement("div", { style: {
|
|
67
|
-
top: 0,
|
|
68
|
-
display: 'flex',
|
|
69
|
-
justifyContent: 'center',
|
|
70
|
-
alignItems: 'center',
|
|
71
|
-
position: 'relative',
|
|
72
|
-
paddingBottom: 1,
|
|
73
|
-
} },
|
|
74
|
-
labelBg,
|
|
75
|
-
labelIcon,
|
|
76
|
-
labelText));
|
|
77
|
-
}
|
|
78
|
-
function getLabelBg(sponsor) {
|
|
79
|
-
var height = sponsor.plan === 'platinum' ? 32 : 24;
|
|
80
|
-
return React.createElement("img", { src: labelBgImg, style: { height: height, position: 'absolute', bottom: 0 } });
|
|
81
|
-
}
|
|
82
|
-
function getLabelText(sponsor) {
|
|
83
|
-
if (sponsor.plan === 'platinum') {
|
|
84
|
-
return React.createElement(React.Fragment, null);
|
|
85
|
-
}
|
|
86
|
-
var letterSpacing = undefined;
|
|
87
|
-
if (['bronze', 'silver', 'gold', 'indie'].includes(sponsor.plan)) {
|
|
88
|
-
letterSpacing = 1;
|
|
89
|
-
}
|
|
90
|
-
/*
|
|
91
|
-
if (sponsor.plan === 'indie') {
|
|
92
|
-
letterSpacing = 2
|
|
93
|
-
}
|
|
94
|
-
*/
|
|
95
|
-
return (React.createElement(React.Fragment, null,
|
|
96
|
-
' ',
|
|
97
|
-
React.createElement("span", { style: {
|
|
98
|
-
zIndex: 1,
|
|
99
|
-
fontSize: '0.82em',
|
|
100
|
-
position: 'relative',
|
|
101
|
-
top: 0,
|
|
102
|
-
fontWeight: 500,
|
|
103
|
-
color: '#666',
|
|
104
|
-
letterSpacing: letterSpacing,
|
|
105
|
-
} }, capitalizeFirstLetter(sponsor.plan))));
|
|
106
|
-
}
|
|
107
|
-
function getLabelIcon(sponsor) {
|
|
108
|
-
var medalSrc;
|
|
109
|
-
if (sponsor.plan === 'platinum') {
|
|
110
|
-
return React.createElement(Emoji, { name: "trophy", style: { fontSize: '1.3em', position: 'relative' } });
|
|
111
|
-
}
|
|
112
|
-
else if (sponsor.plan === 'indie') {
|
|
113
|
-
return React.createElement(Emoji, { name: "ribbon", style: { fontSize: '0.9em', position: 'relative', top: 1 } });
|
|
114
|
-
}
|
|
115
|
-
else if (sponsor.plan === 'gold') {
|
|
116
|
-
medalSrc = medalGold;
|
|
117
|
-
}
|
|
118
|
-
else if (sponsor.plan === 'silver') {
|
|
119
|
-
medalSrc = medalSilver;
|
|
120
|
-
}
|
|
121
|
-
else if (sponsor.plan === 'bronze') {
|
|
122
|
-
medalSrc = medalBronze;
|
|
123
|
-
}
|
|
124
|
-
else {
|
|
125
|
-
assert(false);
|
|
126
|
-
}
|
|
127
|
-
return React.createElement("img", { src: medalSrc, style: { height: 15, zIndex: 1, marginRight: 5 } });
|
|
128
|
-
}
|
|
129
|
-
function getSize(sponsor) {
|
|
130
|
-
var plan = sponsor.plan;
|
|
131
|
-
var divSize;
|
|
132
|
-
if (plan === 'platinum') {
|
|
133
|
-
divSize = { width: 500, height: 180, padding: 100 };
|
|
134
|
-
}
|
|
135
|
-
if (plan === 'gold') {
|
|
136
|
-
divSize = { width: 400, height: 150, padding: 95 };
|
|
137
|
-
}
|
|
138
|
-
if (plan === 'silver') {
|
|
139
|
-
divSize = { width: 300, height: 100, padding: 45 };
|
|
140
|
-
}
|
|
141
|
-
if (plan === 'bronze') {
|
|
142
|
-
divSize = { width: 200, height: 70, padding: 30 };
|
|
143
|
-
}
|
|
144
|
-
if (plan === 'indie') {
|
|
145
|
-
divSize = { width: 140, height: 50, padding: 20 };
|
|
146
|
-
}
|
|
147
|
-
assert(divSize);
|
|
148
|
-
if (sponsor.divSize) {
|
|
149
|
-
Object.assign(divSize, sponsor.divSize);
|
|
150
|
-
}
|
|
151
|
-
return divSize;
|
|
152
|
-
}
|
|
153
|
-
function capitalizeFirstLetter(word) {
|
|
154
|
-
return word[0].toUpperCase() + word.slice(1);
|
|
155
|
-
}
|
|
156
|
-
function isCompany(sponsor) {
|
|
157
|
-
return !isIndividual(sponsor);
|
|
158
|
-
}
|
|
159
|
-
function isIndividual(sponsor) {
|
|
160
|
-
return 'username' in sponsor;
|
|
161
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
export { Supporter, SupporterSection, SectionDescription, Individuals, SupporterImg, CallToAction };
|
|
2
|
-
import React from 'react';
|
|
3
|
-
type Children = (string | JSX.Element) | (string | JSX.Element)[];
|
|
4
|
-
declare function SupporterSection({ children }: {
|
|
5
|
-
children?: Children;
|
|
6
|
-
}): React.JSX.Element;
|
|
7
|
-
declare function SectionDescription({ children }: {
|
|
8
|
-
children?: Children;
|
|
9
|
-
}): React.JSX.Element;
|
|
10
|
-
declare function Individuals({ children }: {
|
|
11
|
-
children?: Children;
|
|
12
|
-
}): React.JSX.Element;
|
|
13
|
-
declare function Supporter({ username, avatarUrl }: {
|
|
14
|
-
username: string;
|
|
15
|
-
avatarUrl?: string;
|
|
16
|
-
}): React.JSX.Element;
|
|
17
|
-
declare function SupporterImg({ imgSrc, // has precedence over avatarUrl
|
|
18
|
-
avatarUrl, // has precedence over username
|
|
19
|
-
username, imgAlt, width, height, padding, }: {
|
|
20
|
-
imgSrc?: string;
|
|
21
|
-
avatarUrl?: string;
|
|
22
|
-
username?: string;
|
|
23
|
-
imgAlt?: string;
|
|
24
|
-
width: number;
|
|
25
|
-
height: number;
|
|
26
|
-
padding?: number;
|
|
27
|
-
}): React.JSX.Element;
|
|
28
|
-
declare function CallToAction({ iconUrl, text, href }: {
|
|
29
|
-
iconUrl: string;
|
|
30
|
-
text: string;
|
|
31
|
-
href: string;
|
|
32
|
-
}): React.JSX.Element;
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
// supporters = sponsors + contributors
|
|
2
|
-
export { Supporter, SupporterSection, SectionDescription, Individuals, SupporterImg, CallToAction };
|
|
3
|
-
import React from 'react';
|
|
4
|
-
function SupporterSection(_a) {
|
|
5
|
-
var children = _a.children;
|
|
6
|
-
return (React.createElement("div", { style: {
|
|
7
|
-
textAlign: 'center',
|
|
8
|
-
} }, children));
|
|
9
|
-
}
|
|
10
|
-
function SectionDescription(_a) {
|
|
11
|
-
var children = _a.children;
|
|
12
|
-
return (React.createElement("div", { style: {
|
|
13
|
-
maxWidth: 400,
|
|
14
|
-
display: 'inline-block',
|
|
15
|
-
marginTop: 12,
|
|
16
|
-
marginBottom: 12,
|
|
17
|
-
fontSize: '1.05em',
|
|
18
|
-
} }, children));
|
|
19
|
-
}
|
|
20
|
-
function Individuals(_a) {
|
|
21
|
-
var children = _a.children;
|
|
22
|
-
return (React.createElement("div", { style: {
|
|
23
|
-
display: 'flex',
|
|
24
|
-
flexWrap: 'wrap',
|
|
25
|
-
justifyContent: 'center',
|
|
26
|
-
alignItems: 'end',
|
|
27
|
-
margin: '17px auto',
|
|
28
|
-
maxWidth: 700,
|
|
29
|
-
} }, children));
|
|
30
|
-
}
|
|
31
|
-
// Individual sponsor or small contributor
|
|
32
|
-
function Supporter(_a) {
|
|
33
|
-
var username = _a.username, avatarUrl = _a.avatarUrl;
|
|
34
|
-
var website = "https://github.com/".concat(username);
|
|
35
|
-
var width = 30;
|
|
36
|
-
var height = 30;
|
|
37
|
-
var marginWidth = 5;
|
|
38
|
-
var marginHeight = 5;
|
|
39
|
-
return (React.createElement("a", { href: website, style: {
|
|
40
|
-
margin: "".concat(marginHeight, "px ").concat(marginWidth, "px"),
|
|
41
|
-
} },
|
|
42
|
-
React.createElement("div", { style: {
|
|
43
|
-
borderRadius: 7,
|
|
44
|
-
overflow: 'hidden',
|
|
45
|
-
width: width,
|
|
46
|
-
height: height,
|
|
47
|
-
display: 'flex',
|
|
48
|
-
alignItems: 'center',
|
|
49
|
-
flexDirection: 'column',
|
|
50
|
-
justifyContent: 'center',
|
|
51
|
-
} },
|
|
52
|
-
React.createElement(SupporterImg, { username: username, avatarUrl: avatarUrl, width: width, height: height }))));
|
|
53
|
-
}
|
|
54
|
-
function SupporterImg(_a) {
|
|
55
|
-
var imgSrc = _a.imgSrc, // has precedence over avatarUrl
|
|
56
|
-
avatarUrl = _a.avatarUrl, // has precedence over username
|
|
57
|
-
username = _a.username, imgAlt = _a.imgAlt, width = _a.width, height = _a.height, _b = _a.padding, padding = _b === void 0 ? 0 : _b;
|
|
58
|
-
var size = Math.max(width, height);
|
|
59
|
-
if (avatarUrl) {
|
|
60
|
-
imgSrc = imgSrc || "".concat(avatarUrl, "&size=").concat(size);
|
|
61
|
-
}
|
|
62
|
-
if (username) {
|
|
63
|
-
imgSrc = imgSrc || "https://github.com/".concat(username, ".png?size=").concat(size);
|
|
64
|
-
imgAlt = imgAlt || username;
|
|
65
|
-
}
|
|
66
|
-
return (React.createElement("img", { style: { width: "calc(100% - ".concat(padding, "px)"), height: height - padding, zIndex: 2, objectFit: 'contain' }, src: imgSrc, alt: imgAlt }));
|
|
67
|
-
}
|
|
68
|
-
function CallToAction(_a) {
|
|
69
|
-
var iconUrl = _a.iconUrl, text = _a.text, href = _a.href;
|
|
70
|
-
return (React.createElement("a", { className: "button", style: {
|
|
71
|
-
color: 'inherit',
|
|
72
|
-
display: 'inline-flex',
|
|
73
|
-
alignItems: 'center',
|
|
74
|
-
padding: '5px 10px',
|
|
75
|
-
marginBottom: 10,
|
|
76
|
-
}, href: href },
|
|
77
|
-
React.createElement("img", { src: iconUrl, height: 22 }),
|
|
78
|
-
" ",
|
|
79
|
-
React.createElement("span", { style: { marginLeft: 7, fontSize: '1.07em' } }, text)));
|
|
80
|
-
}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
export { maintainers };
|
|
2
|
-
import React from 'react';
|
|
3
|
-
var maintainers = [
|
|
4
|
-
{
|
|
5
|
-
username: 'brillout',
|
|
6
|
-
firstName: 'Rom',
|
|
7
|
-
roles: [
|
|
8
|
-
React.createElement(React.Fragment, null, "Vike Core (Lead Maintainer, Creator)"),
|
|
9
|
-
React.createElement(React.Fragment, null,
|
|
10
|
-
React.createElement("code", null, "vike-react"),
|
|
11
|
-
" (Lead Maintainer, Creator)"),
|
|
12
|
-
React.createElement(React.Fragment, null,
|
|
13
|
-
React.createElement("code", null, "vike-vue"),
|
|
14
|
-
" (Contributor)"),
|
|
15
|
-
],
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
username: 'magne4000',
|
|
19
|
-
firstName: 'Joël',
|
|
20
|
-
roles: [
|
|
21
|
-
React.createElement(React.Fragment, null, "Bati (Lead Maintainer, Creator)"),
|
|
22
|
-
React.createElement(React.Fragment, null,
|
|
23
|
-
React.createElement("code", null, "vike-solid"),
|
|
24
|
-
" (Lead Maintainer, Creator)"),
|
|
25
|
-
React.createElement(React.Fragment, null, "Vike Core (Contributor)"),
|
|
26
|
-
],
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
username: 'nitedani',
|
|
30
|
-
firstName: 'Dániel',
|
|
31
|
-
roles: [
|
|
32
|
-
React.createElement(React.Fragment, null,
|
|
33
|
-
React.createElement("code", null, "vike-react-query"),
|
|
34
|
-
" (Lead Maintainer, Creator)"),
|
|
35
|
-
React.createElement(React.Fragment, null,
|
|
36
|
-
React.createElement("code", null, "vike-angular"),
|
|
37
|
-
" (Lead Maintainer, Creator)"),
|
|
38
|
-
React.createElement(React.Fragment, null, "Vike Core (Contributor)"),
|
|
39
|
-
],
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
username: 'phonzammi',
|
|
43
|
-
firstName: 'Muhammad',
|
|
44
|
-
roles: [
|
|
45
|
-
React.createElement(React.Fragment, null,
|
|
46
|
-
React.createElement("code", null, "vike-vue"),
|
|
47
|
-
" (Contributor)"),
|
|
48
|
-
React.createElement(React.Fragment, null,
|
|
49
|
-
React.createElement("code", null, "vike-solid"),
|
|
50
|
-
" (Contributor)"),
|
|
51
|
-
React.createElement(React.Fragment, null,
|
|
52
|
-
React.createElement("code", null, "vike-react"),
|
|
53
|
-
" (Contributor)"),
|
|
54
|
-
],
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
username: '4350pChris',
|
|
58
|
-
firstName: 'Chris',
|
|
59
|
-
roles: [
|
|
60
|
-
React.createElement(React.Fragment, null,
|
|
61
|
-
React.createElement("code", null, "vike-pinia"),
|
|
62
|
-
" (Lead Maintainer, Creator)"),
|
|
63
|
-
React.createElement(React.Fragment, null,
|
|
64
|
-
React.createElement("code", null, "vike-vue"),
|
|
65
|
-
" (Contributor)"),
|
|
66
|
-
React.createElement(React.Fragment, null, "Vike Core (Contributor)"),
|
|
67
|
-
],
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
username: 'AurelienLourot',
|
|
71
|
-
firstName: 'Aurélien',
|
|
72
|
-
roles: [
|
|
73
|
-
React.createElement(React.Fragment, null,
|
|
74
|
-
React.createElement("code", null, "vike-vue"),
|
|
75
|
-
" (Contributor)"),
|
|
76
|
-
React.createElement(React.Fragment, null,
|
|
77
|
-
React.createElement("code", null, "vike-react"),
|
|
78
|
-
" (Contributor)"),
|
|
79
|
-
React.createElement(React.Fragment, null, "Vike Core (Contributor)"),
|
|
80
|
-
],
|
|
81
|
-
// consultingUrl: 'https://lourot.dev/'
|
|
82
|
-
},
|
|
83
|
-
];
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
2
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
3
|
-
if (ar || !(i in from)) {
|
|
4
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
5
|
-
ar[i] = from[i];
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
9
|
-
};
|
|
10
|
-
export { sponsorsList };
|
|
11
|
-
import contraLogo from './sponsorsList/companyLogos/contra.svg';
|
|
12
|
-
import optimizersLogo from './sponsorsList/companyLogos/optimizers.svg';
|
|
13
|
-
import sourcegraphLogo from './sponsorsList/companyLogos/sourcegraph.svg';
|
|
14
|
-
import burdaforwardLogo from './sponsorsList/companyLogos/burdaforward.png';
|
|
15
|
-
import ecosiaLogo from './sponsorsList/companyLogos/ecosia.svg';
|
|
16
|
-
import inlangLogo from './sponsorsList/companyLogos/inlang.png';
|
|
17
|
-
import bluefinLogo from './sponsorsList/companyLogos/bluefin.svg';
|
|
18
|
-
import alignableLogo from './sponsorsList/companyLogos/alignable.svg';
|
|
19
|
-
var individuals = [
|
|
20
|
-
{ username: 'arp' },
|
|
21
|
-
{ username: 'tlancina' },
|
|
22
|
-
{ username: 'shishkin17' },
|
|
23
|
-
{ username: 'royalswe' },
|
|
24
|
-
{ username: 'lebretont' },
|
|
25
|
-
{ username: 'xar' },
|
|
26
|
-
{ username: 'NicoZweifel' },
|
|
27
|
-
{ username: 'mariuslian' },
|
|
28
|
-
{ username: 'shortpoet' },
|
|
29
|
-
{ username: 'sqs' },
|
|
30
|
-
{ username: 'dylmye' },
|
|
31
|
-
{ username: 'isakura313' },
|
|
32
|
-
{ username: 'rivatove' },
|
|
33
|
-
{ username: 'SMKJALLAD' },
|
|
34
|
-
{ username: 'routinghub' },
|
|
35
|
-
{ username: 'LostCrew' }, // Ecosia
|
|
36
|
-
{ username: 'jakubfiala' }, // Ecosia
|
|
37
|
-
{ username: 'HarshwardhanSingh' },
|
|
38
|
-
{ username: 'd3x7r0' },
|
|
39
|
-
{ username: 'ChristophP' }, // BurdaForward
|
|
40
|
-
{ username: 'msiegenthaler' },
|
|
41
|
-
{ username: 'linkyard' },
|
|
42
|
-
{ username: 'AnukarOP' },
|
|
43
|
-
{ username: 'RoyMcCrain' },
|
|
44
|
-
{ username: 'chrisvander' }, // Bluefin
|
|
45
|
-
{ username: 'EralChen' },
|
|
46
|
-
{ username: '3dyuval' },
|
|
47
|
-
{ username: 'talzion12' },
|
|
48
|
-
{ username: 'felixhaeberle' },
|
|
49
|
-
{ username: 'apappas1129' },
|
|
50
|
-
/* 404
|
|
51
|
-
{ username: 'agalbenus' },
|
|
52
|
-
*/
|
|
53
|
-
{ username: 'phiberber' },
|
|
54
|
-
{ username: 'cookieplace' },
|
|
55
|
-
{ username: 'JiangWeixian' },
|
|
56
|
-
{ username: 'harrytran998' },
|
|
57
|
-
{ username: 'alexturpin' },
|
|
58
|
-
{ username: 'gu-stav' },
|
|
59
|
-
{ username: 'YannBirba' },
|
|
60
|
-
{ username: 'fi3ework' },
|
|
61
|
-
{ username: 'EJM-Company' },
|
|
62
|
-
{ username: 'Nelie-Taylor' },
|
|
63
|
-
{ username: 'fortezhuo' },
|
|
64
|
-
{ username: 'nshelia' },
|
|
65
|
-
{ username: 'marcusway' },
|
|
66
|
-
{ username: 'edikdeisling' },
|
|
67
|
-
{ username: 'AurelienLourot' },
|
|
68
|
-
{ username: 'jahredhope' },
|
|
69
|
-
{ username: 'charlieforward9' },
|
|
70
|
-
{ username: 'leonmondria' },
|
|
71
|
-
{ username: 'jscottsf' },
|
|
72
|
-
{ username: 'micah-redwood' },
|
|
73
|
-
{ username: 'nicka-redwood' },
|
|
74
|
-
{ username: 'ser1us' },
|
|
75
|
-
{ username: 'nikitavoloboev' },
|
|
76
|
-
{ username: 'samuelstroschein' },
|
|
77
|
-
{ username: 'npacucci' },
|
|
78
|
-
{ username: 'szarapka' },
|
|
79
|
-
{ username: 'techniath' },
|
|
80
|
-
{ username: 'DannyZB' },
|
|
81
|
-
{ username: 'pieperz' },
|
|
82
|
-
{ username: 'hemengke1997' },
|
|
83
|
-
{ username: 'spacedawwwg' },
|
|
84
|
-
{ username: 'arthurgailes' },
|
|
85
|
-
{ username: 'stackblitz' },
|
|
86
|
-
{ username: 'codthing' },
|
|
87
|
-
{ username: 'Junaidhkn' },
|
|
88
|
-
{ username: 'zgfdev' },
|
|
89
|
-
];
|
|
90
|
-
var companies = [
|
|
91
|
-
{
|
|
92
|
-
companyName: 'Contra',
|
|
93
|
-
companyLogo: contraLogo,
|
|
94
|
-
plan: 'silver',
|
|
95
|
-
website: 'https://contra.com',
|
|
96
|
-
github: 'contra',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
companyName: 'Inlang',
|
|
100
|
-
companyLogo: inlangLogo,
|
|
101
|
-
plan: 'silver',
|
|
102
|
-
website: 'https://inlang.com/',
|
|
103
|
-
github: 'opral',
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
companyName: 'Alignable',
|
|
107
|
-
companyLogo: alignableLogo,
|
|
108
|
-
plan: 'silver',
|
|
109
|
-
website: 'https://www.alignable.com/',
|
|
110
|
-
github: 'AlignableUser',
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
companyName: 'Sourcegraph',
|
|
114
|
-
companyLogo: sourcegraphLogo,
|
|
115
|
-
plan: 'bronze',
|
|
116
|
-
website: 'https://sourcegraph.com',
|
|
117
|
-
github: 'sourcegraph',
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
companyName: 'Optimizers',
|
|
121
|
-
companyLogo: optimizersLogo,
|
|
122
|
-
plan: 'bronze',
|
|
123
|
-
website: 'https://www.optimizers.nl/',
|
|
124
|
-
divSize: {
|
|
125
|
-
padding: 20,
|
|
126
|
-
},
|
|
127
|
-
github: 'OptimizersGroup',
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
companyName: 'BurdaFoward',
|
|
131
|
-
companyLogo: burdaforwardLogo,
|
|
132
|
-
plan: 'bronze',
|
|
133
|
-
website: 'https://www.burda-forward.de',
|
|
134
|
-
github: 'BurdaForward',
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
companyName: 'Ecosia',
|
|
138
|
-
companyLogo: ecosiaLogo,
|
|
139
|
-
plan: 'bronze',
|
|
140
|
-
website: 'https://ecosia.org',
|
|
141
|
-
github: 'ecosia',
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
companyName: 'Bluefin',
|
|
145
|
-
companyLogo: bluefinLogo,
|
|
146
|
-
plan: 'indie',
|
|
147
|
-
website: 'https://www.bluefin.one',
|
|
148
|
-
github: 'bluefin-clinical',
|
|
149
|
-
},
|
|
150
|
-
];
|
|
151
|
-
var sponsorsList = __spreadArray(__spreadArray([], companies, true), individuals, true);
|
package/icons/heart.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="icon" stroke="rgb(248, 113, 113)" fill="rgb(248, 113, 113)"><path d="M12,22.2c-0.3,0-0.5-0.1-0.7-0.3l-8.8-8.8c-2.5-2.5-2.5-6.7,0-9.2c2.5-2.5,6.7-2.5,9.2,0L12,4.3l0.4-0.4c0,0,0,0,0,0C13.6,2.7,15.2,2,16.9,2c0,0,0,0,0,0c1.7,0,3.4,0.7,4.6,1.9l0,0c1.2,1.2,1.9,2.9,1.9,4.6c0,1.7-0.7,3.4-1.9,4.6l-8.8,8.8C12.5,22.1,12.3,22.2,12,22.2zM7,4C5.9,4,4.7,4.4,3.9,5.3c-1.8,1.8-1.8,4.6,0,6.4l8.1,8.1l8.1-8.1c0.9-0.9,1.3-2,1.3-3.2c0-1.2-0.5-2.3-1.3-3.2l0,0C19.3,4.5,18.2,4,17,4c0,0,0,0,0,0c-1.2,0-2.3,0.5-3.2,1.3c0,0,0,0,0,0l-1.1,1.1c-0.4,0.4-1,0.4-1.4,0l-1.1-1.1C9.4,4.4,8.2,4,7,4z"></path></svg>
|
package/icons/people.svg
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
-
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M16.719 19.7519L16.0785 14.6279C15.8908 13.1266 14.6146 12 13.1017 12H12H10.8983C9.38538 12 8.10917 13.1266 7.92151 14.6279L7.28101 19.7519C7.1318 20.9456 8.06257 22 9.26556 22H12H14.7344C15.9374 22 16.8682 20.9456 16.719 19.7519Z" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<circle cx="12" cy="5" r="3" stroke="#000000" stroke-width="2"/>
|
|
5
|
-
<circle cx="4" cy="9" r="2" stroke="#000000" stroke-width="2"/>
|
|
6
|
-
<circle cx="20" cy="9" r="2" stroke="#000000" stroke-width="2"/>
|
|
7
|
-
<path d="M4 14H3.69425C2.71658 14 1.8822 14.7068 1.72147 15.6712L1.38813 17.6712C1.18496 18.8903 2.12504 20 3.36092 20H7" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
-
<path d="M20 14H20.3057C21.2834 14 22.1178 14.7068 22.2785 15.6712L22.6119 17.6712C22.815 18.8903 21.8751 20 20.6392 20C19.4775 20 18.0952 20 17 20" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
-
</svg>
|