Skip to content

Commit f6f6c9e

Browse files
committed
add links and styling to github and bitbucket
1 parent 74cd4d2 commit f6f6c9e

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

pages/about.js

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import Container from '@/components/containers/Container';
66

77
export default function AboutUs() {
88
return (
9-
<div className="about-us">
9+
<div className='about-us'>
1010
<RevealContentContainer>
1111
<Container>
12-
<Title title="About Web Dev Path" />
12+
<Title title='About Web Dev Path' />
1313
<TwoColumn
1414
content={
1515
<div>
@@ -19,21 +19,23 @@ export default function AboutUs() {
1919
junior developers, it was evident the lack of practical
2020
experience with version control in a team dynamic was making
2121
their integration in a professional environment harder. Most of
22-
those new graduates used a version control feature, such as
23-
&nbsp;<u>GitHub</u> or <u>Bitbucket</u>, as a repository for their
24-
personal projects where they were the only participants. So, all
25-
that “branch out and PR review” enriching process was completely
26-
unknown to them. That happened to be a problem either for being
22+
those new graduates used a version control feature, such as&nbsp;
23+
<a target="_blank" href='http://www.github.com' rel="noopener noreferrer">GitHub</a> or&nbsp;
24+
<a target="_blank" href='http://www.bitbucket.com' rel="noopener noreferrer">Bitbucket</a>,
25+
as a repository for their personal projects where they were the
26+
only participants. So, all that “branch out and PR review” enriching
27+
process was completely unknown to them.
28+
That happened to be a problem either for being
2729
considered for “junior” positions and after being hired because,
2830
in most cases, their team lead was a very, very busy senior
2931
developer…
3032
</div>
3133
}
32-
rowOrder="row-reverse"
33-
image="/images/svg/square-brackets.svg"
34+
rowOrder='row-reverse'
35+
image='/images/svg/square-brackets.svg'
3436
color={primary}
3537
bgColor={white}
36-
customInnerClass="about-content"
38+
customInnerClass='about-content'
3739
/>
3840
<TwoColumn
3941
content={
@@ -48,17 +50,17 @@ export default function AboutUs() {
4850
cut it.
4951
</div>
5052
}
51-
image="/images/svg/open-angle-bracket.svg"
53+
image='/images/svg/open-angle-bracket.svg'
5254
color={primary}
5355
bgColor={white}
54-
customInnerClass="about-content"
56+
customInnerClass='about-content'
5557
/>
5658
</Container>
5759
</RevealContentContainer>
5860

5961
<RevealContentContainer>
6062
<Container>
61-
<Title title="Our goals" />
63+
<Title title='Our goals' />
6264
</Container>
6365
</RevealContentContainer>
6466
</div>

styles/TwoColumn.module.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@
6969
margin: 3.875rem 0 2.5rem;
7070
max-width: 39rem;
7171
}
72+
73+
a {
74+
text-decoration: underline;
75+
text-underline-offset: 1px;
76+
}
7277
}
7378

7479
.inner__image {

0 commit comments

Comments
 (0)