-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.js
More file actions
93 lines (88 loc) · 3.84 KB
/
index.js
File metadata and controls
93 lines (88 loc) · 3.84 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
import React from "react";
import { StaticImage } from "gatsby-plugin-image";
import { withPrefix } from "gatsby";
import { Container } from "../../reusecore/Layout";
import { Row } from "../../reusecore/Layout";
import PageHeader from "../../reusecore/PageHeader";
import InternshipPage from "./Careers-Internship-grid";
import JoinCommunity from "../Community/Join-community";
import CareersSectionWrapper from "./careers.style";
const Layer5_culture = "./img/layer5-culture.webp";
const CareersPage = () => {
return (
<CareersSectionWrapper>
<PageHeader title="Come Work with us" path="Careers" />
<div className="careers-section-wrapper">
<Container>
<p className="centerTexts">
If you’re a smart, curious person who can make contributions in and
out of your areas of expertise, why not start now?
</p>
</Container>
<Container>
<Row className="videoText">
<div className="introText">
<h2>Layer5 Culture</h2>
<p>
All team members <strong>are expected to... </strong>
take initiative, execute briskly, debate in the discussion, then
execute post-haste on the decision, irrespective of the specific
decision.
</p>
<p>
All team members <strong>should expect to... </strong>
be challenged, to work hard, to play hard, to be recognized, to
grow and help others grow.
</p>
<p>
<strong>You should... </strong>
pay attention to detail and take pride in your work. Know when
to prioritize and have the discipline to adhere to those
priorities. Focus on the customer. Pay it forward and enable
others. Bring solutions with the problems. Take out the trash
(do grunt work) as needed.
</p>
</div>
<div className="introImage">
<StaticImage
src={Layer5_culture}
alt="Five holding Layer5 banner"
/>
</div>
</Row>
</Container>
<div className="opportunity-section">
<InternshipPage hide_heading={true} />
</div>
<JoinCommunity image={withPrefix("/images/community/community.webp")} />
<Container>
<br />
<p className="center">
Open source contributors come in all shapes, sizes, colors and so
on. All are welcome in the Layer5 projects and community!!
</p>
<p className="center">
Layer5 goes out of its way to welcome and encourage new
contributors. We often assign newcomers an onboarding buddy, a
MeshMate, to ensure that newcomers get both introduced to the
projects within the community and introduced around to other
individuals. We strive to help them get a foothold on a crevice of
one of our initiatives, instilling and nurturing a sense of
ownership, so that they feel at-home as they become a regular
contributor.
</p>
<p className="center">
We also spend a great deal of time trying to recognize and uplift
contributors on the Layer5 and Meshery Twitter accounts whether
“contribution” means code or any of the other various forms of being
involved int the projects and community. Likewise, we try to lift up
contributors’ works on the Layer5 and Meshery LinkedIn pages, too.
And, while it’s not a world stage, we openly and publicly share our
community meetings on YouTube.
</p>
</Container>
</div>
</CareersSectionWrapper>
);
};
export default CareersPage;