forked from coderplex-org/coderplex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspace.js
154 lines (152 loc) · 5.29 KB
/
space.js
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
import React from 'react';
import { Card, Segment, Header, Divider } from 'semantic-ui-react';
import TopBanner from '../components/top-banner';
import publicPage from '../hocs/public-page';
export default publicPage(() => (
<div>
<TopBanner
pageTitle="Space"
pageSubTitle="Physical spaces for collaboration, peer-learning and self-learning"
/>
<main>
<section>
<div>
<Card centered fluid>
<Card.Content>
These are dynamic learning environments, where everyone learns at
their own pace and compliments each other. You can also
participate in weekly group activities like Open source evenings
and other casual competitions
</Card.Content>
</Card>
</div>
</section>
<section>
<h2>Who is this for?</h2>
<div>
<Segment.Group raised piled>
<Segment textAlign="left">
People who are genuinely passionate about tech, who get excited
about learning new skills, building, solving and discussing
problems in latest tech.
</Segment>
<Segment textAlign="left" secondary>
Graduates who are struggling to get a job, who want to build their
expertise in modern technologies and are willing to invest a
significant amount of their time self-learning
</Segment>
<Segment textAlign="left">
Students who are willing to learn outside of their college
curriculum, would like to become professional developers down the
line and get exposure to the real world
</Segment>
<Segment textAlign="left" secondary>
Experienced developers, who want to interact with other
developers, contribute to open source, expand their horizons and
learn new technologies.
</Segment>
<Segment textAlign="left">
Professionals from non-tech background, who want to get started
with tech or switch their careers.
</Segment>
</Segment.Group>
</div>
</section>
<section>
<h2>Activities & Schedule</h2>
<div>
<Segment.Group raised piled>
<Segment textAlign="left">
We will help you pick a technology and provide you with learning
guides to learn and build something on a daily basis.
</Segment>
<Segment textAlign="left" secondary>
<h4>Daily</h4>
You will engage in daily code review and pair programming exercises
with other members.
</Segment>
<Segment textAlign="left">
<h4>Wednesday</h4>
We will have an Open Source Evening, where everyone will be
encouraged to find open source projects and contribute to them.
</Segment>
<Segment textAlign="left" secondary>
<h4>Thursday</h4>
We will have a casual coding competition, where members will
participate to solve coding challenges together.
</Segment>
<Segment textAlign="left">
<h4>Friday - Saturday</h4>
We will have casual hackathons, where everyone will participate
to build a project, big or small.
</Segment>
<Segment textAlign="left" secondary>
<h4>Saturday</h4>
In the evening, we will screen a tech-related documentary, movie or TV
show.
</Segment>
<Segment textAlign="left">
<h4>Sunday</h4>
Members will present their work i.e. projects or new topics they
have made or learned in the past week
</Segment>
</Segment.Group>
</div>
</section>
<divide>
<Divider section />
</divide>
<section>
<h2>Pricing</h2>
<div>
<Card>
<Card.Content>
<Segment inverted color="pink">
<Header as="h2" inverted>
INR 1000/-
<Header.Subheader>per month</Header.Subheader>
</Header>
</Segment>
<Card.Description>
For membership mail us<br />[email protected]
</Card.Description>
</Card.Content>
</Card>
</div>
<h2>Mode of payment</h2>
<Segment.Group horizontal>
<Segment>UPI</Segment>
<Segment>PayTM</Segment>
<Segment>Cash</Segment>
</Segment.Group>
</section>
</main>
<style jsx>{`
main {
background-color: #ffffff;
padding-top: 30px;
padding-bottom: 30px;
padding-left: 30px;
padding-right: 30px;
min-height: calc(100vh - 70px);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
margin: 0 auto;
}
section {
max-width: 800px;
margin: 50px 0;
}
h2 {
text-transform: uppercase;
padding-bottom: 10px;
}
divide {
width: 100%;
}
`}</style>
</div>
));