@@ -6,9 +6,14 @@ import {
66 primaryAccent ,
77 lightBgColor ,
88} from '@/styles/TwoColumn.module.scss' ;
9+ import rowStyles from '@/styles/Row.module.scss' ;
910import CardsColumns from '@/components/containers/CardsColumns' ;
1011import Title from '@/components/snippets/Title' ;
12+ import Wrapper from '@/components/containers/Wrapper' ;
1113import Container from '@/components/containers/Container' ;
14+ import Row from '@/components/containers/Row' ;
15+ import Member from '@/components/containers/Member' ;
16+ import { whoWeAre } from '../utils/about' ;
1217
1318export default function AboutUs ( ) {
1419 return (
@@ -142,7 +147,7 @@ export default function AboutUs() {
142147 customInnerClass = 'wanna-learn-more'
143148 />
144149 < TwoColumn
145- title = " Junior Developers"
150+ title = ' Junior Developers'
146151 content = {
147152 'If you are a junior web developer looking for some guidance and mentoring, ' +
148153 'we invite you to join us and start coding our platform. ' +
@@ -159,7 +164,7 @@ export default function AboutUs() {
159164 customInnerClass = 'two-text-columns'
160165 secondTextColumn = {
161166 < TwoColumn
162- title = " Experienced Developers"
167+ title = ' Experienced Developers'
163168 content = {
164169 'If you are an experienced and patient-loving developer, ' +
165170 'a true rockstar who wants to mentor juniors, ' +
@@ -182,15 +187,24 @@ export default function AboutUs() {
182187 content = {
183188 < div >
184189 After taking a look at our project
185- < a target = '_blank'
186- href = 'https://github.com/Web-Dev-Path/web-dev-path#readme'
187- rel = 'noopener noreferrer' > README</ a > and
188- < a target = '_blank'
189- href = 'https://github.com/Web-Dev-Path/web-dev-path/wiki'
190- rel = 'noopener noreferrer' > wiki</ a > ,
191- just send us an email sharing with us about your journey in tech and
192- why you’re interested in joining us.
193- < br />
190+ < a
191+ target = '_blank'
192+ href = 'https://github.com/Web-Dev-Path/web-dev-path#readme'
193+ rel = 'noopener noreferrer'
194+ >
195+ README
196+ </ a > { ' ' }
197+ and
198+ < a
199+ target = '_blank'
200+ href = 'https://github.com/Web-Dev-Path/web-dev-path/wiki'
201+ rel = 'noopener noreferrer'
202+ >
203+ wiki
204+ </ a >
205+ , just send us an email sharing with us about your journey in tech
206+ and why you’re interested in joining us.
207+ < br />
194208 We've got you!
195209 </ div >
196210 }
@@ -199,11 +213,34 @@ export default function AboutUs() {
199213 color = { primary }
200214 bgColor = { white }
201215 customInnerClass = 'get-started'
202- link = " mailto:hello@webdevpath.co"
203- linkText = " Ping Us"
216+ link = ' mailto:hello@webdevpath.co'
217+ linkText = ' Ping Us'
204218 customBtnClass = 'inverted-grey'
205219 />
206220 </ RevealContentContainer >
221+ < RevealContentContainer >
222+ < Wrapper customClass = 'primary__accent' >
223+ < Container >
224+ < Title title = 'Who we are' />
225+ < Row customClass = 'align__left' >
226+ { whoWeAre . map ( _ => {
227+ return (
228+ < Member
229+ key = { _ ?. name }
230+ image = { _ ?. image }
231+ name = { _ ?. name }
232+ title = { _ ?. title }
233+ position = { _ ?. position }
234+ linkedIn = { _ ?. linkedIn }
235+ portfolio = { _ ?. portfolio }
236+ about = { _ ?. about }
237+ />
238+ ) ;
239+ } ) }
240+ </ Row >
241+ </ Container >
242+ </ Wrapper >
243+ </ RevealContentContainer >
207244 </ div >
208245 ) ;
209246}
0 commit comments