Skip to content

Commit 11e2de9

Browse files
committed
added who we are data
1 parent 32a4553 commit 11e2de9

File tree

12 files changed

+99
-27
lines changed

12 files changed

+99
-27
lines changed

components/containers/Member.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function Member({
4242
height='25px'
4343
width='25px'
4444
/>
45-
<Link href={`https://linkedin.com/${linkedIn}`}>{linkedIn}</Link>
45+
<Link href={`https://linkedin.com/in/${linkedIn}`}>{linkedIn}</Link>
4646
</div>
4747
)}
4848
{portfolio && (

pages/about.js

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import Title from '@/components/snippets/Title';
1212
import Container from '@/components/containers/Container';
1313
import Row from '@/components/containers/Row';
1414
import Member from '@/components/containers/Member';
15+
import { whoWeAre } from './data/about';
1516

1617
export default function AboutUs() {
1718
return (
@@ -222,32 +223,20 @@ export default function AboutUs() {
222223
<Title title='Who we are' />
223224

224225
<Row>
225-
<Member
226-
image='/images/ellipse.png'
227-
name='Mariana Caldas'
228-
title='Project Team Lead'
229-
position='Web Developer (Front-End)'
230-
customClass='row-card'
231-
linkedIn='mariana-caldas'
232-
portfolio='marianacaldas.com'
233-
about='Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'
234-
/>
235-
236-
<Member image='/images/ellipse.png' customClass='row-card' />
237-
238-
<Member image='/images/ellipse.png' customClass='row-card' />
239-
240-
<Member image='/images/ellipse.png' customClass='row-card' />
241-
242-
<Member image='/images/ellipse.png' customClass='row-card' />
243-
244-
<Member image='/images/ellipse.png' customClass='row-card' />
245-
246-
<Member image='/images/ellipse.png' customClass='row-card' />
247-
248-
<Member image='/images/ellipse.png' customClass='row-card' />
249-
250-
<Member image='/images/ellipse.png' customClass='row-card' />
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+
})}
251240
</Row>
252241
</Container>
253242
</section>

pages/data/about.js

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
export const whoWeAre = [
2+
{
3+
image: '/images/mariana.webp',
4+
name: 'Mariana',
5+
title: 'Project Founder and Team Lead',
6+
position: 'Front-End Developer',
7+
linkedIn: 'mariana-caldas-souza',
8+
portfolio: 'www.marianacaldas.com',
9+
about:
10+
'Mariana is a Front-End developer who strongly believes in the power of sharing knowledge.',
11+
},
12+
{
13+
image: '/images/jana.webp',
14+
name: 'Jana Behfarshad',
15+
title: 'Project Founder',
16+
position: 'Web Developer',
17+
linkedIn: 'jana-behfarshad',
18+
portfolio: '',
19+
about:
20+
"A web dev mum who dreams of teaching her children and others coding. The tech industry is revolving hastily towards creating, inspiring, and contributing to the world. Let's all be a part of it!",
21+
},
22+
{
23+
image: '/images/kim.webp',
24+
name: 'Kimberly Cashwell',
25+
title: '',
26+
position: 'UI/UX',
27+
linkedIn: 'kimcashwell',
28+
portfolio: 'www.kimcashwell.com',
29+
about:
30+
'Kim loves to design interfaces with the purpose of helping people. She enjoys solving problems with UX and is always learning a new tool or concept.',
31+
},
32+
{
33+
image: '/images/camila.webp',
34+
name: 'Camila Santos',
35+
title: '',
36+
position: 'UI/UX',
37+
linkedIn: 'letsgocami',
38+
portfolio: 'www.behance.net/letsgocami',
39+
about:
40+
'Camila is a UI Designer who loves traveling and is passionate about all parts of the creative process. She believes that creating layouts is a team collaboration work process.',
41+
},
42+
{
43+
image: '/images/cheryl.webp',
44+
name: 'Cheryl',
45+
title: '',
46+
position: 'Full-Stack Developer',
47+
linkedIn: 'cheryl-h-murphy',
48+
portfolio: '',
49+
about:
50+
'Cheryl is a Full-Stack web and mobile developer who loves learning and creating tools to make life easier and improve efficiency. She also enjoys problem-solving and helping new developers',
51+
},
52+
{
53+
image: '/images/klesta.webp',
54+
name: 'Klesta Luli',
55+
title: '',
56+
position: 'Front-End Developer',
57+
linkedIn: 'klestaluli',
58+
portfolio: 'www.klesdev.com',
59+
about:
60+
'Klesta is a Front-End developer who enjoys merging creative and technical skills to provide useful tools people can use to make their lives easier.',
61+
},
62+
{
63+
image: '/images/vincent.webp',
64+
name: 'Vincent',
65+
title: '',
66+
position: 'Web Developer',
67+
linkedIn: 'vincentm5',
68+
portfolio: 'vmcodes.com',
69+
about:
70+
'Vincent is a professional in the IT industry and also a web developer that enjoys contributing to open-source projects in his spare time. Whether creating aesthetic web pages, coding server-side applications or configuring an environment to host software, he enjoys it all.',
71+
},
72+
];

public/images/camila.webp

57.9 KB
Binary file not shown.

public/images/cheryl.webp

2.29 KB
Binary file not shown.

public/images/jana.webp

22.3 KB
Binary file not shown.

public/images/kim.webp

18.8 KB
Binary file not shown.

public/images/klesta.webp

6.1 KB
Binary file not shown.

public/images/mariana.webp

21.5 KB
Binary file not shown.

public/images/vincent.webp

2.17 KB
Binary file not shown.

0 commit comments

Comments
 (0)