|
1 | 1 | import React, { Component } from 'react'; |
| 2 | + |
2 | 3 | import PropTypes from 'prop-types'; |
3 | 4 | // import {Card,Button} from 'react-bootstrap' |
4 | | -import jaskirat from './Jaskirat.jpeg'; |
5 | | -import devesh from './Devesh.jpeg'; |
6 | | -import shivam from './Shivam.jpeg'; |
7 | | -import vaibhav from './Vaibhav.jpeg'; |
| 5 | + |
8 | 6 | import './Team.css'; |
| 7 | +import BoardMembersWrapper from './BoardMembers' |
| 8 | +import CoreContributorsWrapper from './CoreContributors' |
9 | 9 | import axios from 'axios'; |
10 | 10 | import $ from 'jquery'; |
11 | | -import { Card, Icon, Image } from 'semantic-ui-react' |
12 | 11 | class Team extends Component { |
13 | 12 |
|
14 | 13 | constructor(props){ |
15 | 14 | super(props); |
16 | 15 | this.state={ |
| 16 | + boardMembers:[], |
17 | 17 | contributors:[] |
18 | 18 | } |
19 | 19 | } |
@@ -47,198 +47,12 @@ class Team extends Component { |
47 | 47 | <div class="mt-12"></div> |
48 | 48 | <h2>Board</h2> |
49 | 49 | <div class="container pt-8 pb-6"> |
50 | | - |
51 | | - <div class="row"style={{display:"flex",justifyContent:"space-between"}}> |
52 | | - |
53 | | - <div class="col-md-4"> |
54 | | - |
55 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
56 | | - <Image src={jaskirat} wrapped ui={false}/> |
57 | | - <Card.Content> |
58 | | - <Card.Header>Jaskirat Singh</Card.Header> |
59 | | - <Card.Meta> |
60 | | - <span className='date'>Founder</span> |
61 | | - </Card.Meta> |
62 | | - <Card.Description> |
63 | | - Open Source Enthusiast. |
64 | | - </Card.Description> |
65 | | - </Card.Content> |
66 | | - <Card.Content extra> |
67 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
68 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
69 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
70 | | - </div> |
71 | | - </Card.Content> |
72 | | - </Card> |
73 | | - </div> |
74 | | - <div class="col-md-4"> |
75 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
76 | | - <Image src={devesh} wrapped ui={false}/> |
77 | | - <Card.Content> |
78 | | - <Card.Header>Devesh</Card.Header> |
79 | | - <Card.Meta> |
80 | | - <span className='date'>Donut Maintainer</span> |
81 | | - </Card.Meta> |
82 | | - <Card.Description> |
83 | | - Matthew is a musician living in Nashville. |
84 | | - </Card.Description> |
85 | | - </Card.Content> |
86 | | - <Card.Content extra> |
87 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
88 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
89 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
90 | | - </div> |
91 | | - </Card.Content> |
92 | | - </Card> |
93 | | - </div> |
94 | | - <div class="col-md-4"> |
95 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
96 | | - <Image src={vaibhav} wrapped ui={false} /> |
97 | | - <Card.Content> |
98 | | - <Card.Header>Vaibhav D. Aren</Card.Header> |
99 | | - <Card.Meta> |
100 | | - <span className='date'>Co-Founder</span> |
101 | | - </Card.Meta> |
102 | | - <Card.Description> |
103 | | - Matthew is a musician living in Nashville. |
104 | | - </Card.Description> |
105 | | - </Card.Content> |
106 | | - <Card.Content extra> |
107 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
108 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
109 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
110 | | - </div> |
111 | | - </Card.Content> |
112 | | - </Card> |
113 | | - </div> |
114 | | - <div class="col-md-4"> |
115 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
116 | | - <Image src={shivam} wrapped ui={false} /> |
117 | | - <Card.Content> |
118 | | - <Card.Header>Shivam Luthra</Card.Header> |
119 | | - <Card.Meta> |
120 | | - <span className='date'>CodeBadge Maintainer</span> |
121 | | - </Card.Meta> |
122 | | - <Card.Description> |
123 | | - Matthew is a musician living in Nashville. |
124 | | - </Card.Description> |
125 | | - </Card.Content> |
126 | | - <Card.Content extra> |
127 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
128 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
129 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
130 | | - </div> |
131 | | - </Card.Content> |
132 | | - </Card> |
133 | | - </div> |
134 | | - <div class="col-md-4"> |
135 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
136 | | - <Image src="https://avatars1.githubusercontent.com/u/32647423?s=460&v=4" wrapped ui={false} width={{maxWidth:"350px"}}/> |
137 | | - <Card.Content> |
138 | | - <Card.Header>Ayush Nagar</Card.Header> |
139 | | - <Card.Meta> |
140 | | - <span className='date'>CodeBadge Maintainer</span> |
141 | | - </Card.Meta> |
142 | | - <Card.Description> |
143 | | - Matthew is a musician living in Nashville. |
144 | | - </Card.Description> |
145 | | - </Card.Content> |
146 | | - <Card.Content extra> |
147 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
148 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
149 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
150 | | - </div> |
151 | | - </Card.Content> |
152 | | - </Card> |
153 | | - </div> |
154 | | - <div class="col-md-4"> |
155 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
156 | | - <Image src="https://avatars1.githubusercontent.com/u/33068322?s=460&v=4" wrapped ui={false} /> |
157 | | - <Card.Content> |
158 | | - <Card.Header>Siddharth</Card.Header> |
159 | | - <Card.Meta> |
160 | | - <span className='date'>Designer</span> |
161 | | - </Card.Meta> |
162 | | - <Card.Description> |
163 | | - Matthew is a musician living in Nashville. |
164 | | - </Card.Description> |
165 | | - </Card.Content> |
166 | | - <Card.Content extra> |
167 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
168 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
169 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
170 | | - </div> |
171 | | - </Card.Content> |
172 | | - </Card> |
173 | | - </div> |
174 | | - </div> |
175 | | -</div> |
176 | | -<h2>Our Backbone</h2> |
177 | | - <div class="container pt-8 pb-6" style={{display:"flex",justifyContent:"space-evenly"}}> |
178 | | - <div class="row"> |
179 | | - <div class="col-md-4"> |
180 | | - |
181 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
182 | | - <Image src="https://avatars0.githubusercontent.com/u/31209617?s=460&v=4" wrapped ui={false}/> |
183 | | - <Card.Content> |
184 | | - <Card.Header>Rupeshiya</Card.Header> |
185 | | - <Card.Meta> |
186 | | - <span className='date'>Core Colaborator</span> |
187 | | - </Card.Meta> |
188 | | - <Card.Description> |
189 | | - Matthew is a musician living in Nashville. |
190 | | - </Card.Description> |
191 | | - </Card.Content> |
192 | | - <Card.Content extra> |
193 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
194 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
195 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
196 | | - </div> |
197 | | - </Card.Content> |
198 | | - </Card> |
199 | | - </div> |
200 | | - <div class="col-md-4"> |
201 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
202 | | - <Image src="https://avatars2.githubusercontent.com/u/34160672?s=460&v=4" wrapped ui={false} width={{maxWidth:"350px"}}/> |
203 | | - <Card.Content> |
204 | | - <Card.Header>Tushar</Card.Header> |
205 | | - <Card.Meta> |
206 | | - <span className='date'>Core Colaborator</span> |
207 | | - </Card.Meta> |
208 | | - <Card.Description> |
209 | | - Matthew is a musician living in Nashville. |
210 | | - </Card.Description> |
211 | | - </Card.Content> |
212 | | - <Card.Content extra> |
213 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
214 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
215 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
216 | | - </div> |
217 | | - </Card.Content> |
218 | | - </Card> |
219 | | - </div> |
220 | | - <div class="col-md-4"> |
221 | | - <Card style={{marginBottom:"2vh",border:"0px"}}> |
222 | | - <Image src="https://avatars3.githubusercontent.com/u/43990819?s=460&v=4" wrapped ui={false} /> |
223 | | - <Card.Content> |
224 | | - <Card.Header>Shivansh</Card.Header> |
225 | | - <Card.Meta> |
226 | | - <span className='date'>Core Colaborator</span> |
227 | | - </Card.Meta> |
228 | | - <Card.Description> |
229 | | - Matthew is a musician living in Nashville. |
230 | | - </Card.Description> |
231 | | - </Card.Content> |
232 | | - <Card.Content extra> |
233 | | - <div class="container" style={{display:"flex",justifyContent:"space-evenly"}}> |
234 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-github" aria-hidden="true"></i></a> |
235 | | - <a class="btn btn-primary mr-1" href="https://github.com/codeuino/codebadge" role="button" style={{borderRadius:"50%",backgroundColor:" #22247A"}}><i class="fa fa-facebook" aria-hidden="true"></i></a> |
| 50 | + <BoardMembersWrapper/> |
| 51 | + </div> |
| 52 | + <h2>Our Backbone</h2> |
| 53 | + <div class="container pt-8 pb-6" style={{display:"flex",justifyContent:"space-evenly"}}> |
| 54 | + <CoreContributorsWrapper/> |
236 | 55 | </div> |
237 | | - </Card.Content> |
238 | | - </Card> |
239 | | - </div> |
240 | | - </div> |
241 | | - </div> |
242 | 56 | <h2>Our Awesome Contributors</h2> |
243 | 57 | <div id="cotributors" className="container d-flex"> |
244 | 58 | <div class="row" style={{display:"flex",justifyContent:"center"}}> |
|
0 commit comments