-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.js
More file actions
249 lines (245 loc) · 10 KB
/
index.js
File metadata and controls
249 lines (245 loc) · 10 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
import React from "react";
import { Link, withPrefix } from "gatsby";
import { Container, Row, Col } from "../../reusecore/Layout";
import Button from "../../reusecore/Button";
import JoinCommunity from "../Community/Join-community";
import { FaArrowRight } from "@react-icons/all-files/fa/FaArrowRight";
import { FaUsers } from "@react-icons/all-files/fa/FaUsers";
import CommunitySectionWrapper from "./community.style";
import NewcomersMap from "./Newcomers-guide/newcomers-map.js";
import DiscussCallout from "../../sections/Discuss-Callout";
import { ReactComponent as MeshmateIcon } from "../../assets/images/meshmate/meshmate-stack-colorMode.svg";
import InlineQuotes from "../../components/Inline-quotes";
import AdventuresCallout from "../Adventures-Callout";
import PictureSlider from "./slider";
const CommunityMember = withPrefix("/images/community/five.webp");
const backgroundImageSrc = withPrefix("/images/lite/bookmarks.webp");
const CommunityPage = () => {
return (
<CommunitySectionWrapper>
<div
className="community-hero"
style={{
backgroundImage: `url(${backgroundImageSrc})`,
backgroundPosition: "center",
backgroundRepeat: "no-repeat",
backgroundSize: "cover",
}}
>
<div className="community-header">
<h1>The Layer5 Community</h1>
<h2>New members are always welcome</h2>
</div>
</div>
<div className="community-section-wrapper">
<Container>
<Row
style={{
flexWrap: "wrap",
}}
className="service-mesh-projects"
>
<Col $sm={12} $lg={6}>
<h2>
Warm, welcoming, and encouraging. Embrace developer-defined
infrastructure and help empower every engineer with us.
</h2>
<p>
We build projects to provide learning environments and cloud
native infrastructure and application management tooling. Share
in our collective accolades as you build lifelong relationships,
and world-stage software. Our shared commitment to the open
source spirit pushes Layer5 projects forward.
</p>
</Col>
<Col $sm={12} $lg={6}>
<img src={CommunityMember} alt="Community Member" />
</Col>
</Row>
<Row
style={{
flexWrap: "wrap",
}}
className="open-source-projects"
>
<h2>Open Source and Cloud Native</h2>
<p>
Layer5 projects are open source software. Anyone can download,
use, work on, and share it with others. It's built on principles
like collaboration, globalism, and innovation. Layer5 projects are
distributed under the terms of Apache v2.
</p>
</Row>
</Container>
<div className="our-community-members">
<Row className="our-community-members_row">
<Col className="community" $sm={12} $lg={6}>
<h3>Jump in. The community is warm!</h3>
<h1>Our Community Members</h1>
<p>
With active members from around the globe, the Layer5 community
is a collection of diverse open source contributors, each of
whom espouse our cultural values of inclusivity and paying it
forward for others. We welcome individuals at all stages of
their development and of all walks of life. Every member is
encouraged to embrace these values and support one another in
meaningfully and consistently advancing the community's open
source initiatives.
</p>
<p>
We believe that every contributor deserves a safe and friendly
environment, enabling them to effectively compare different
ideas and find the best solutions for advancement, while
building the size, diversity, and strength of the community.
</p>
<Button
$primary
title="See our community member profiles"
$url="/community/members"
/>
</Col>
<Col className="slider" $sm={12} $lg={6}>
{/* <StaticImage src={Picture} alt="Five_with_banner" /> */}
<PictureSlider />
</Col>
</Row>
</div>
<Container>
<Row className="recognition-program meshmate">
<div className="recognition-content">
<div className="badges-section">
<div className="badge-stack">
<div className="badge-item">
<img
src="https://badges.layer5.io/assets/badges/docker-captain/docker-captain.png"
alt="Docker Captain Badge"
/>
</div>
<div className="badge-item">
<img
src="https://badges.layer5.io/assets/badges/cncf-ambassador/cncf-ambassador.png"
alt="CNCF Ambassador Badge"
/>
</div>
<div className="badge-item">
<img
src="https://badges.layer5.io/assets/badges/meshmate/meshmate.png"
alt="Meshmate Badge"
/>
</div>
</div>
</div>
<Col className="content">
<h1 className="subtitle">Your Achievements, Recognized</h1>
<h1>Layer5 Recognition Program</h1>
<p>
The <strong>Layer5 Recognition Program</strong> is more than a
badge. It's a testament to your skills, dedication, and impact
in the cloud-native ecosystem. Every contribution – big or
small – is a step toward earning a badge that tells your
unique story.
</p>
<p>
Showcase your journey, connect with peers, and let the world
see the milestones you've achieved. Whether you're solving
challenges, sharing knowledge, or coding solutions, there's a
badge waiting for you.
</p>
<Button
$primary
title="Explore Badges Now"
$url="https://badges.layer5.io"
/>
</Col>
</div>
</Row>
</Container>
<Container>
<Row className="meshmate">
<Col className="content" $sm={12} $lg={6}>
<h1 className="onboarding">
An onboarding and mentoring program
</h1>
<h1>Layer5 MeshMates</h1>
<p>
The Layer5 community is growing at a tremendous rate. We value
our connections and that is what makes us unique. Whether it is
your first Layer5 meeting or your tenth contribution, we want to
make sure that you are supported and equipped to take advantage
of all of that the Layer5 community has to offer.
</p>
<p>
In the Layer5 mentor program, we will match you up with a
MeshMate to support and guide you along the way, by enabling you
to identify your area of interests within the projects,
directing you towards working groups to join, growing your Cloud
Native knowledge, and establishing a network of relationships.
</p>
</Col>
<Col $sm={12} $lg={6}>
<MeshmateIcon className="meshmate-img meshmate-img-transparent" />
<Link
className="meshmate-link meshmate-link-transparent"
to="/community/meshmates"
>
<h2>Open Source Mentorship Program</h2>
<button className="icon" aria-label="mentorship-program">
<FaArrowRight />
</button>
</Link>
</Col>
</Row>
</Container>
<Container>
<Row className="newcomers-section">
<Col $xs={12} $lg={6} className="map">
<NewcomersMap />
</Col>
<Col $xs={12} $lg={6} className="text">
<div>
<h1>Newcomers Welcome!</h1>
<h2>Are you new to the community?</h2>
<p className="invitation">
Begin your journey by{" "}
<a href="https://slack.layer5.io">
joining the community Slack
</a>
. Then, use the resources linked in our{" "}
<Link to="/community/newcomers">
Contributor's Journey Map{" "}
</Link>
and engage in the community and projects.
</p>
<Button
$primary
title="See All Newcomers Resources"
$url="/community/newcomers"
>
<FaUsers size={21} className="icon-left" />
</Button>
</div>
</Col>
</Row>
</Container>
<Container>
<InlineQuotes
title={"Community Member"}
quote={
"Wow, you all are incredibly helpful. I wish every open source community was as friendly as Layer5's."
}
person={"Priyanshu Sharma"}
/>
</Container>
</div>
<JoinCommunity
image={withPrefix("/images/community/community.webp")}
className="newcomers-join"
/>
<Container className="Callout">
<DiscussCallout />
<AdventuresCallout />
</Container>
</CommunitySectionWrapper>
);
};
export default CommunityPage;