-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.js
More file actions
302 lines (297 loc) · 11.2 KB
/
index.js
File metadata and controls
302 lines (297 loc) · 11.2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import React, { useState } from "react";
import { Link, withPrefix } from "gatsby";
import Button from "../../../reusecore/Button";
import { Col, Container, Row } from "../../../reusecore/Layout";
import PageHeader from "../../../reusecore/PageHeader";
import { NewcomersGuideWrapper } from "./NewcomersPageWrapper.style";
import TutorialsTable from "./Tutorials-table";
import NewcomersMap from "./newcomers-map";
import JoinCommunity from "../Join-community";
import longArrow from "./long-arrow.svg";
const CommunityImage2 = withPrefix("/images/community/five-finding-issue.webp");
const CommunityImage3 =
"../../../assets/images/newcomers-page-images/community-collage.webp";
const FiveWorking = withPrefix("/images/community/five-working.webp");
const CommunityHandbook = withPrefix(
"/images/community/community-handbook.webp",
);
const CommunityImage4 = withPrefix("/images/community/community.webp");
const NewcomersGuide = () => {
const [hover, setHover] = useState(false);
return (
<NewcomersGuideWrapper>
<PageHeader title="Welcome Newcomers!" />
<Container>
<div className="newcomers-welcome">
<p>
Whether you are a first time contributor or an open source veteran,
you are welcome to contribute to and actively engage in the
development of projects at Layer5. Here are some instructions to get
you started and if you haven’t joined yet, join the{" "}
<a href="https://slack.layer5.io/" target="_blank" rel="noreferrer">
Slack workspace
</a>{" "}
to collaborate with the community and the{" "}
<a href="https://discuss.layer5.io" target="">
discussion forum
</a>{" "}
for questions. Also, you can check the quick-links below for jumping
straight into things.
</p>
<Row
style={{
flexWrap: "wrap",
}}
className="newcomers-journey"
>
<Col
className="heading"
$sm={12}
$lg={6}
onMouseOver={() => setHover(true)}
onMouseOut={() => setHover(false)}
>
<h2>Contributor's Journey</h2>
<div className="heading-start">
<h4>Start Here</h4>
<img className="heading-start__arrow" src={longArrow} />
</div>
</Col>
<Col $sm={12} $lg={6}>
<NewcomersMap handleMouseHover={hover} />
</Col>
</Row>
<Row className="how-to-contribute">
<h3>How to Contribute?</h3>
</Row>
<Row className="how-to-contribute">
<p>
These steps outline the process by which you can openly engage,
learn, and participate in the broad set of open source projects at
Layer5. If at any time you get stuck, please seek help in the{" "}
<a
href="https://discuss.layer5.io"
target="_blank"
rel="noreferrer"
>
community forum
</a>
{""}. Our <Link to="/community/meshmates">MeshMates</Link> and
community members are here to help!
</p>
</Row>
</div>
<div className="instructions">
<Row
style={{
flexWrap: "wrap",
}}
className="step"
>
<Col $sm={12} $lg={6}>
<h3>Fill in the Community Member Form</h3>
<p>
Help us get to know you, so that we can highlight projects and
initiatives that align with your interests. Fill-in a community
member form. Gain access to community resources.
</p>
</Col>
<Col $sm={12} $lg={6} className="col-newcomers-form">
<Button
$primary
className="newcomers-form"
title="Submit a Member Form"
$url="/newcomer"
$external={false}
/>
</Col>
<Col $sm={12} $lg={6} className="col-finding-an-issue">
<div className="finding-an-issue">
<img src={CommunityImage2} alt="Five Working Image" />
</div>
</Col>
<Col $sm={12} $lg={6}>
<h3>Finding an Issue to Work On</h3>
<p>
Note that the Layer5 community spans six GitHub organizations.
See all in the{" "}
<Link to="/community/handbook/repository-overview">
repository overview
</Link>
.
</p>
<ol type="i">
<li>
Browse the list of{" "}
<a
href="https://github.com/layer5io"
target="_blank"
rel="noreferrer"
>
Layer5 org
</a>{" "}
issues bearing the “
<a
href="https://github.com/layer5io/layer5/issues?q=state%3Aopen%20label%3A%22good%20first%20issue%22"
target="_blank"
rel="noreferrer"
>
good first issue
</a>
” label, “
<a href="https://github.com/layer5io/layer5/issues?q=state%3Aopen%20label%3Afirst-timers-only">
first timers only
</a>
” or the “
<a
href="https://github.com/layer5io/layer5/issues?q=state%3Aopen%20label%3A%22help%20wanted%22"
target="_blank"
rel="noreferrer"
>
help wanted
</a>
” label.
</li>
<li>
Find an area of interest by perusing the list of projects by
repository and technology in the{" "}
<Link to="/community/handbook/repository-overview/">
Layer5 Repository Overview
</Link>
.
</li>
<li>
After identifying the issue you wish to work on, check whether
it has been assigned or not by taking a look at the assignee
section on the issue. If it hasn't been, signal your interest
by commenting on the issue, so that it can be assigned to you.
</li>
</ol>
</Col>
</Row>
<Row
style={{
flexWrap: "wrap",
}}
className="step"
>
<Col $sm={12} $lg={6}>
<h3>Working on Your Issue</h3>
<ol type="i">
<li>
Once an issue has been assigned to you, it’s time to get
started! Make sure you take a look at the{" "}
<a
href="https://layer5.io/community/handbook/contribution"
target="_blank"
rel="noreferrer"
>
Contributing Guidelines
</a>
.
</li>
<li>
Be sure to{" "}
<a
href="https://docs.meshery.io/project/contributing#general-contribution-flow"
target="_blank"
rel="noreferrer"
>
sign-off on your commits
</a>
.
</li>
<li>Contributions of all sizes are welcome.</li>
<li>
If you need some additional help, please join Layer5{" "}
<a
href="https://discuss.layer5.io/"
target="_blank"
rel="noreferrer"
>
discussion forum
</a>{" "}
or find your way to the{" "}
<a
href="https://slack.layer5.io"
target="_blank"
rel="noreferrer"
>
#newcomers
</a>{" "}
channel in our Slack workspace. Introduce yourself and ask
questions.
</li>
</ol>
</Col>
<Col $sm={12} $lg={6} className="community-img">
<img src={FiveWorking} alt="Five Working Image" />
</Col>
</Row>
<Row style={{ flexWrap: "wrap" }} className="step">
<Col $sm={12} $lg={6} className="community-collage">
<a
className="book-container"
href="https://layer5.io/community/handbook/"
>
<div className="book">
<div>
<img src={CommunityHandbook} alt="Community Image" />
</div>
</div>
</a>
</Col>
<Col $sm={12} $lg={6}>
<h3>Explore the Meshery Community</h3>
<p>
The community is growing at a tremendous rate. We value our
connections and that is what makes us unique. Whether it is your
first meeting or your tenth contribution, we want to make sure
that you are supported and equipped to take advantage of all of
that the community has to offer.
</p>
</Col>
</Row>
<Row style={{ flexWrap: "wrap" }} className="step">
<Col $sm={12} $lg={6}>
<h3>While Your Issue is Under Review</h3>
<p>
Be patient. There are a large number of contributors and only a
small number of maintainers/reviewers. All contributors are
equally important to us, and we'll be sure to get to you as soon
as possible. In the meanwhile, you are welcome to engage in the
Layer5{" "}
<a
href="https://discuss.layer5.io/"
target="_blank"
rel="noreferrer"
>
discussion forum
</a>
, join our{" "}
<a
href="https://slack.layer5.io/"
target="_blank"
rel="noreferrer"
>
Slack workspace
</a>{" "}
and take a look at all our <Link to="/projects">projects</Link>.
</p>
</Col>
<Col $sm={12} $lg={6} className="community-collage">
<img src={CommunityImage3} alt="Community Image" />
</Col>
</Row>
</div>
<div className="table-wrapper" id="tutorials">
<h2>Tutorials</h2>
<h5>Checkout some of the resources to get going</h5>
<TutorialsTable />
</div>
<JoinCommunity image={CommunityImage4} />
</Container>
</NewcomersGuideWrapper>
);
};
export default NewcomersGuide;