Skip to content

Commit c427886

Browse files
Adjusting about us links style for consistency
1 parent f6f6c9e commit c427886

File tree

2 files changed

+39
-21
lines changed

2 files changed

+39
-21
lines changed

pages/about.js

Lines changed: 33 additions & 20 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,23 +19,36 @@ 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&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
29-
considered for “junior” positions and after being hired because,
30-
in most cases, their team lead was a very, very busy senior
31-
developer…
22+
those new graduates used a version control feature, such
23+
as&nbsp;
24+
<a
25+
target="_blank"
26+
href="http://www.github.com"
27+
rel="noopener noreferrer"
28+
>
29+
GitHub
30+
</a>{' '}
31+
or&nbsp;
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…
3245
</div>
3346
}
34-
rowOrder='row-reverse'
35-
image='/images/svg/square-brackets.svg'
47+
rowOrder="row-reverse"
48+
image="/images/svg/square-brackets.svg"
3649
color={primary}
3750
bgColor={white}
38-
customInnerClass='about-content'
51+
customInnerClass="about-content"
3952
/>
4053
<TwoColumn
4154
content={
@@ -50,19 +63,19 @@ export default function AboutUs() {
5063
cut it.
5164
</div>
5265
}
53-
image='/images/svg/open-angle-bracket.svg'
66+
image="/images/svg/open-angle-bracket.svg"
5467
color={primary}
5568
bgColor={white}
56-
customInnerClass='about-content'
69+
customInnerClass="about-content"
5770
/>
5871
</Container>
5972
</RevealContentContainer>
6073

61-
<RevealContentContainer>
74+
{/* <RevealContentContainer>
6275
<Container>
63-
<Title title='Our goals' />
76+
<Title title="Our goals" />
6477
</Container>
65-
</RevealContentContainer>
78+
</RevealContentContainer> */}
6679
</div>
6780
);
6881
}

styles/TwoColumn.module.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,12 @@
7272

7373
a {
7474
text-decoration: underline;
75-
text-underline-offset: 1px;
75+
text-underline-offset: 2px;
76+
77+
&:hover {
78+
opacity: 0.6;
79+
text-decoration: none;
80+
}
7681
}
7782
}
7883

0 commit comments

Comments
 (0)