-
Notifications
You must be signed in to change notification settings - Fork 157
/
openSource.ts
74 lines (72 loc) · 1.81 KB
/
openSource.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
64
65
66
67
68
69
70
71
72
73
74
import { IOpenSource } from '../component/openSource/IOpenSource';
const openSource: IOpenSource.Payload = {
disable: false,
list: [
{
title: 'Linux Kernal',
descriptions: [
{
content: 'Regular contributor to kernel patches.',
},
{
content: 'Active member of kernel security audit team.',
},
],
},
{
title: 'GNOME',
descriptions: [
{
content: 'Contributor to UX improvements for system utilities.',
},
{
content: 'https://github.com/GNOME',
href: 'https://github.com/GNOME',
},
],
},
{
title: 'node',
descriptions: [
{ content: 'Node.js JavaScript runtime' },
{ content: 'Contributor' },
{
content: 'https://github.com/nodejs/node',
href: 'https://github.com/nodejs/node',
},
{
content: 'Github Stars: ',
postImage: 'https://img.shields.io/github/stars/nodejs/node.svg?style=popout',
},
],
},
{
title: 'NestJS',
descriptions: [
{
content: 'A progressive Node.js framework',
},
{
content:
'for building efficient, scalable, and enterprise-grade server-side applications',
},
{
content: 'Contributor',
},
{
content: 'https://github.com/nestjs/nest',
href: 'https://github.com/nestjs/nest',
},
{
content: 'Monthly Download: ',
postImage: 'https://img.shields.io/npm/dm/@nestjs/core.svg',
},
{
content: 'Github Stars: ',
postImage: 'https://img.shields.io/github/stars/nestjs/nest.svg?style=popout',
},
],
},
],
};
export default openSource;