1
1
import React from 'react' ;
2
+ import { Card , Segment } from 'semantic-ui-react' ;
2
3
3
4
import TopBanner from '../components/top-banner' ;
4
5
import publicPage from '../hocs/public-page' ;
@@ -9,7 +10,62 @@ export default publicPage(() => (
9
10
pageTitle = "Space"
10
11
pageSubTitle = "Physical spaces for collaboration, peer-learning and self-learning"
11
12
/>
12
- < main > llll</ main >
13
+ < main >
14
+ < section >
15
+ < div >
16
+ < Card centered raised fluid >
17
+ < Card . Content >
18
+ These are dynamic learning environments, where everyone learns at
19
+ their own pace and compliments each other. You can also
20
+ participate in weekly group activities like Open source evenings
21
+ and other casual competitions
22
+ </ Card . Content >
23
+ </ Card >
24
+ </ div >
25
+ </ section >
26
+ < section >
27
+ < h2 > Who is this for?</ h2 >
28
+ < div >
29
+ < Segment . Group raised piled >
30
+ < Segment textAlign = "left" >
31
+ People who are genuinely passionate about tech, who get excited
32
+ about learning new skills, building , solving and discussing
33
+ problems in latest tech.
34
+ </ Segment >
35
+ < Segment textAlign = "left" secondary >
36
+ Graduates who are struggling to get a job, who want to build their
37
+ expertise in modern technologis and are willing to invest
38
+ significant amount to their time self-learning
39
+ </ Segment >
40
+ < Segment textAlign = "left" >
41
+ Students who are willing to learn outside of theri collegs
42
+ curriculum, would like to become professional developers down the
43
+ line and get exposire to the real world
44
+ </ Segment >
45
+ < Segment textAlign = "left" secondary >
46
+ Experienced developers, who want to interact with other
47
+ developers, contribute to open source, expand their horizons and
48
+ learn new technologis.
49
+ </ Segment >
50
+ < Segment textAlign = "left" >
51
+ Professioanls from non-tech background, who want to get started
52
+ with tech or switch their careers.
53
+ </ Segment >
54
+ </ Segment . Group >
55
+ </ div >
56
+ </ section >
57
+ < section >
58
+ < h2 > Activities & Schedule </ h2 >
59
+ < div >
60
+ < Segment . Group raised piled >
61
+ < Segment textAlign = "left" >
62
+ We will help you pick a technology and provide you with learning
63
+ guides to learn and build something on a daily basis.
64
+ </ Segment >
65
+ </ Segment . Group >
66
+ </ div >
67
+ </ section >
68
+ </ main >
13
69
< style jsx > { `
14
70
main {
15
71
background-color: #ffffff;
@@ -22,6 +78,15 @@ export default publicPage(() => (
22
78
justify-content: center;
23
79
align-items: center;
24
80
flex-direction: column;
81
+ text-align: center;
82
+ max-width: 800px;
83
+ margin: 0 auto;
84
+ }
85
+ section {
86
+ margin: 50px 0;
87
+ }
88
+ h2 {
89
+ text-transform: uppercase;
25
90
}
26
91
` } </ style >
27
92
</ div >
0 commit comments