@@ -6,7 +6,7 @@ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
6
6
import useBaseUrl from '@docusaurus/useBaseUrl' ;
7
7
import styles from './styles.module.css' ;
8
8
9
- const contributors = [
9
+ const maintainers = [
10
10
{
11
11
name : 'Wes Grimes' ,
12
12
githubHandle : 'wesgrimes' ,
@@ -27,6 +27,45 @@ const contributors = [
27
27
}
28
28
]
29
29
} ,
30
+ {
31
+ name : 'Jay Bell' ,
32
+ githubHandle : 'yharaskrik' ,
33
+ url : 'https://github.com/yharaskrik' ,
34
+ imgUrl : 'https://avatars3.githubusercontent.com/u/9469090?s=460&u=cdb912283b06f43b36da0137e61d66a48f9f7e85&v=4' ,
35
+ tasks : [
36
+ {
37
+ icon : '⚠️' ,
38
+ description : 'Tests'
39
+ } ,
40
+ {
41
+ icon : '💻' ,
42
+ description : 'Code'
43
+ }
44
+ ]
45
+ } ,
46
+ {
47
+ name : 'Dominik Pieper' ,
48
+ githubHandle : 'DominikPieper' ,
49
+ url : 'https://github.com/DominikPieper' ,
50
+ imgUrl : 'https://avatars3.githubusercontent.com/u/77470?s=460&u=dcb757adc603e0d4caebb02182be9674299e0de0&v=4' ,
51
+ tasks : [
52
+ {
53
+ icon : '🚇' ,
54
+ description : 'Infrastructure (Hosting, Build-Tools, etc)'
55
+ } ,
56
+ {
57
+ icon : '⚠️' ,
58
+ description : 'Tests'
59
+ } ,
60
+ {
61
+ icon : '💻' ,
62
+ description : 'Code'
63
+ }
64
+ ]
65
+ }
66
+ ] ;
67
+
68
+ const contributors = [
30
69
{
31
70
name : 'Chris Whited' ,
32
71
githubHandle : 'cmwhited' ,
@@ -110,42 +149,6 @@ const contributors = [
110
149
description : 'Code'
111
150
}
112
151
]
113
- } ,
114
- {
115
- name : 'Jay Bell' ,
116
- githubHandle : 'yharaskrik' ,
117
- url : 'https://github.com/yharaskrik' ,
118
- imgUrl : 'https://avatars3.githubusercontent.com/u/9469090?s=460&u=cdb912283b06f43b36da0137e61d66a48f9f7e85&v=4' ,
119
- tasks : [
120
- {
121
- icon : '⚠️' ,
122
- description : 'Tests'
123
- } ,
124
- {
125
- icon : '💻' ,
126
- description : 'Code'
127
- }
128
- ]
129
- } ,
130
- {
131
- name : 'Dominik Pieper' ,
132
- githubHandle : 'DominikPieper' ,
133
- url : 'https://github.com/DominikPieper' ,
134
- imgUrl : 'https://avatars3.githubusercontent.com/u/77470?s=460&u=dcb757adc603e0d4caebb02182be9674299e0de0&v=4' ,
135
- tasks : [
136
- {
137
- icon : '🚇' ,
138
- description : 'Infrastructure (Hosting, Build-Tools, etc)'
139
- } ,
140
- {
141
- icon : '⚠️' ,
142
- description : 'Tests'
143
- } ,
144
- {
145
- icon : '💻' ,
146
- description : 'Code'
147
- }
148
- ]
149
152
}
150
153
] ;
151
154
@@ -257,6 +260,21 @@ function Home() {
257
260
</ section >
258
261
) }
259
262
263
+ < div className = "container" >
264
+ < h2 > Maintainers</ h2 >
265
+ </ div >
266
+ { maintainers && maintainers . length > 0 && (
267
+ < section className = { styles . contributors } >
268
+ < div className = "container" >
269
+ < div className = "row" >
270
+ { maintainers . map ( ( props , idx ) => (
271
+ < DeveloperCard key = { idx } { ...props } > </ DeveloperCard >
272
+ ) ) }
273
+ </ div >
274
+ </ div >
275
+ </ section >
276
+ ) }
277
+
260
278
< div className = "container" >
261
279
< h2 > Contributors</ h2 >
262
280
< p > Thanks goes to these wonderful people (< a href = "https://allcontributors.org/docs/en/emoji-key" > emoji key</ a > ):</ p >
0 commit comments