|
1 | 1 | import RevealContentContainer from '@/components/containers/RevealContentContainer';
|
2 |
| -import Title from '@/components/snippets/Title'; |
3 | 2 | import TwoColumn from '@/components/containers/TwoColumn';
|
4 |
| -import { white, primary } from '@/styles/TwoColumn.module.scss'; |
5 |
| -import Container from '@/components/containers/Container'; |
| 3 | +import { white, primary, primaryAccent } from '@/styles/TwoColumn.module.scss'; |
6 | 4 |
|
7 | 5 | export default function AboutUs() {
|
8 | 6 | return (
|
9 | 7 | <div className='about-us'>
|
10 | 8 | <RevealContentContainer>
|
11 |
| - <Container> |
12 |
| - <Title title='About Web Dev Path' /> |
13 |
| - <TwoColumn |
14 |
| - content={ |
15 |
| - <div> |
16 |
| - The Web Dev Path project was idealized in 2020 in consequence of |
17 |
| - many conversations with aspirant web developers as well as by |
18 |
| - considering some personal experiences. When talking to other |
19 |
| - junior developers, it was evident the lack of practical |
20 |
| - experience with version control in a team dynamic was making |
21 |
| - their integration in a professional environment harder. Most of |
22 |
| - those new graduates used a version control feature, such |
23 |
| - as |
24 |
| - <a |
25 |
| - target='_blank' |
26 |
| - href='http://www.github.com' |
27 |
| - rel='noopener noreferrer' |
28 |
| - > |
29 |
| - GitHub |
30 |
| - </a>{' '} |
31 |
| - or |
32 |
| - <a |
33 |
| - target='_blank' |
34 |
| - href='http://www.bitbucket.com' |
35 |
| - rel='noopener noreferrer' |
36 |
| - > |
37 |
| - Bitbucket |
38 |
| - </a> |
39 |
| - , as a repository for their personal projects where they were |
40 |
| - the only participants. So, all that “branch out and PR review” |
41 |
| - enriching process was completely unknown to them. That happened |
42 |
| - to be a problem either for being considered for “junior” |
43 |
| - positions and after being hired because, in most cases, their |
44 |
| - team lead was a very, very busy senior developer… |
45 |
| - </div> |
46 |
| - } |
47 |
| - rowOrder='row-reverse' |
48 |
| - image='/images/svg/square-brackets.svg' |
49 |
| - color={primary} |
50 |
| - bgColor={white} |
51 |
| - customInnerClass='about-content' |
52 |
| - /> |
53 |
| - <TwoColumn |
54 |
| - content={ |
55 |
| - <div> |
56 |
| - Another problem found out is that collaborating with open-source |
57 |
| - projects, the way it is possible to gain some version control |
58 |
| - experience, can be quite intimidating since there isn’t a clear |
59 |
| - mentoring aspect. It can take years for someone to develop “a |
60 |
| - logic mindset” that allows solving a problem by using a |
61 |
| - programming language, so just going to an open-source project |
62 |
| - with a list of available tasks that don’t make any sense won’t |
63 |
| - cut it. |
64 |
| - </div> |
65 |
| - } |
66 |
| - image='/images/svg/open-angle-bracket.svg' |
67 |
| - color={primary} |
68 |
| - bgColor={white} |
69 |
| - customInnerClass='about-content' |
70 |
| - /> |
71 |
| - </Container> |
| 9 | + <TwoColumn |
| 10 | + title='Our background' |
| 11 | + content={ |
| 12 | + <div> |
| 13 | + The Web Dev Path project was idealized in 2020 in consequence of |
| 14 | + many conversations with aspirant web developers as well as by |
| 15 | + considering some personal experiences. |
| 16 | + <br /> |
| 17 | + <br /> |
| 18 | + When talking to other junior developers, it was evident the lack |
| 19 | + of practical experience with version control in a team dynamic was |
| 20 | + making their integration in a professional environment harder. |
| 21 | + </div> |
| 22 | + } |
| 23 | + rowOrder='row' |
| 24 | + image='/images/svg/square-brackets.svg' |
| 25 | + color={primary} |
| 26 | + bgColor={primaryAccent} |
| 27 | + customInnerClass='our-background' |
| 28 | + /> |
72 | 29 | </RevealContentContainer>
|
73 | 30 |
|
74 |
| - {/* <RevealContentContainer> |
75 |
| - <Container> |
76 |
| - <Title title="Our goals" /> |
77 |
| - </Container> |
78 |
| - </RevealContentContainer> */} |
| 31 | + <RevealContentContainer> |
| 32 | + <TwoColumn |
| 33 | + title='Peer reviews' |
| 34 | + content={ |
| 35 | + <div> |
| 36 | + Most of those new graduates used a version control feature, such |
| 37 | + as |
| 38 | + <a |
| 39 | + target='_blank' |
| 40 | + href='http://www.github.com' |
| 41 | + rel='noopener noreferrer' |
| 42 | + > |
| 43 | + GitHub |
| 44 | + </a>{' '} |
| 45 | + or |
| 46 | + <a |
| 47 | + target='_blank' |
| 48 | + href='http://www.bitbucket.com' |
| 49 | + rel='noopener noreferrer' |
| 50 | + > |
| 51 | + Bitbucket |
| 52 | + </a> |
| 53 | + , as a repository for their personal projects where they were the |
| 54 | + only participants. So, all that “branch out and PR review” |
| 55 | + enriching process was completely unknown to them. |
| 56 | + <br /> |
| 57 | + <br /> |
| 58 | + That happened to be a problem either for being considered for |
| 59 | + “junior” positions and after being hired because, in most cases, |
| 60 | + their team lead was a very, very busy senior developer… |
| 61 | + </div> |
| 62 | + } |
| 63 | + rowOrder='row-reverse' |
| 64 | + image='/images/svg/open-angle-bracket.svg' |
| 65 | + color={primary} |
| 66 | + bgColor={white} |
| 67 | + customInnerClass='about-content' |
| 68 | + /> |
| 69 | + <TwoColumn |
| 70 | + title='Version control' |
| 71 | + content={ |
| 72 | + <div> |
| 73 | + Another problem found out is that collaborating with open-source |
| 74 | + projects, the way it is possible to gain some version control |
| 75 | + experience, can be quite intimidating since there isn’t a clear |
| 76 | + mentoring aspect. |
| 77 | + <br /> |
| 78 | + <br /> |
| 79 | + It can take years for someone to develop “a logic mindset” that |
| 80 | + allows solving a problem by using a programming language, so just |
| 81 | + going to an open-source project with a list of available tasks |
| 82 | + that don’t make any sense won’t cut it. |
| 83 | + </div> |
| 84 | + } |
| 85 | + image='/images/svg/close-angle-bracket.svg' |
| 86 | + color={primary} |
| 87 | + bgColor={white} |
| 88 | + customInnerClass='about-content' |
| 89 | + /> |
| 90 | + </RevealContentContainer> |
79 | 91 | </div>
|
80 | 92 | );
|
81 | 93 | }
|
0 commit comments