Skip to content

Commit a677f51

Browse files
committed
docs: change landing page
1 parent c72fde3 commit a677f51

File tree

1 file changed

+55
-37
lines changed

1 file changed

+55
-37
lines changed

packages/docs/src/pages/index.js

Lines changed: 55 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
66
import useBaseUrl from '@docusaurus/useBaseUrl';
77
import styles from './styles.module.css';
88

9-
const contributors = [
9+
const maintainers = [
1010
{
1111
name: 'Wes Grimes',
1212
githubHandle: 'wesgrimes',
@@ -27,6 +27,45 @@ const contributors = [
2727
}
2828
]
2929
},
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 = [
3069
{
3170
name: 'Chris Whited',
3271
githubHandle: 'cmwhited',
@@ -110,42 +149,6 @@ const contributors = [
110149
description: 'Code'
111150
}
112151
]
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-
]
149152
}
150153
];
151154

@@ -257,6 +260,21 @@ function Home() {
257260
</section>
258261
)}
259262

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+
260278
<div className="container">
261279
<h2>Contributors</h2>
262280
<p>Thanks goes to these wonderful people (<a href="https://allcontributors.org/docs/en/emoji-key">emoji key</a>):</p>

0 commit comments

Comments
 (0)