|
1 | 1 | import React from 'react';
|
| 2 | +import { Card, Segment, Header, Divider } from 'semantic-ui-react'; |
2 | 3 |
|
3 |
| -import Icon from '../components/icon'; |
| 4 | +import TopBanner from '../components/top-banner'; |
4 | 5 | import publicPage from '../hocs/public-page';
|
5 | 6 |
|
6 | 7 | export default publicPage(() => (
|
7 | 8 | <div>
|
| 9 | + <TopBanner |
| 10 | + pageTitle="Space" |
| 11 | + pageSubTitle="Physical spaces for collaboration, peer-learning and self-learning" |
| 12 | + /> |
8 | 13 | <main>
|
9 |
| - <Icon /> |
10 |
| - <h3>Under Construction, Coming Soon!...</h3> |
| 14 | + <section> |
| 15 | + <div> |
| 16 | + <Card centered 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 textAlign="left" secondary> |
| 66 | + <h4>Daily</h4> |
| 67 | + You will engage in daily code review and pair programming exercise |
| 68 | + with other members. |
| 69 | + </Segment> |
| 70 | + <Segment textAlign="left"> |
| 71 | + <h4>Wednesday</h4> |
| 72 | + We will have an Open Source Evening, where everyone will be |
| 73 | + encouraged to find open source projects and contribute to them. |
| 74 | + </Segment> |
| 75 | + <Segment textAlign="left" secondary> |
| 76 | + <h4>Thursday</h4> |
| 77 | + We will have a casual coding competition, where members will |
| 78 | + participate to solve coding challenges together. |
| 79 | + </Segment> |
| 80 | + <Segment textAlign="left"> |
| 81 | + <h4>Friday - Saturday</h4> |
| 82 | + We will have a casual hackathons, where everyone will participate |
| 83 | + to build a project, big or small. |
| 84 | + </Segment> |
| 85 | + <Segment textAlign="left" secondary> |
| 86 | + <h4>Saturday</h4> |
| 87 | + In evening, we will screen a tech related documentary, movie or TV |
| 88 | + show. |
| 89 | + </Segment> |
| 90 | + <Segment textAlign="left"> |
| 91 | + <h4>Sunday</h4> |
| 92 | + Members will present their work i.e projects or new topics they |
| 93 | + have made or learned in the past week |
| 94 | + </Segment> |
| 95 | + </Segment.Group> |
| 96 | + </div> |
| 97 | + </section> |
| 98 | + <divide> |
| 99 | + <Divider section /> |
| 100 | + </divide> |
| 101 | + <section> |
| 102 | + <h2>Pricing</h2> |
| 103 | + <div> |
| 104 | + <Card> |
| 105 | + <Card.Content> |
| 106 | + <Segment inverted color="pink"> |
| 107 | + <Header as="h2" inverted> |
| 108 | + INR 1000/- |
| 109 | + <Header.Subheader>per month</Header.Subheader> |
| 110 | + </Header> |
| 111 | + </Segment> |
| 112 | + <Card.Description> |
| 113 | + For membership mail us <br />[email protected] |
| 114 | + </Card.Description> |
| 115 | + </Card.Content> |
| 116 | + </Card> |
| 117 | + </div> |
| 118 | + <h2>Mode of payment</h2> |
| 119 | + <Segment.Group horizontal> |
| 120 | + <Segment>UPI</Segment> |
| 121 | + <Segment>PayTM</Segment> |
| 122 | + <Segment>Cash</Segment> |
| 123 | + </Segment.Group> |
| 124 | + </section> |
11 | 125 | </main>
|
12 | 126 | <style jsx>{`
|
13 | 127 | main {
|
| 128 | + background-color: #ffffff; |
| 129 | + padding-top: 30px; |
| 130 | + padding-bottom: 30px; |
| 131 | + padding-left: 30px; |
| 132 | + padding-right: 30px; |
14 | 133 | min-height: calc(100vh - 70px);
|
15 |
| - background: #f4f7fb; |
16 |
| - color: #314159; |
17 | 134 | display: flex;
|
18 | 135 | justify-content: center;
|
19 | 136 | align-items: center;
|
20 | 137 | flex-direction: column;
|
| 138 | + text-align: center; |
| 139 | + margin: 0 auto; |
| 140 | + } |
| 141 | + section { |
| 142 | + max-width: 800px; |
| 143 | + margin: 50px 0; |
| 144 | + } |
| 145 | + h2 { |
| 146 | + text-transform: uppercase; |
| 147 | + padding-bottom: 10px; |
| 148 | + } |
| 149 | + divide { |
| 150 | + width: 100%; |
21 | 151 | }
|
22 | 152 | `}</style>
|
23 | 153 | </div>
|
|
0 commit comments