Skip to content

Commit 40414bc

Browse files
committed
added section content
1 parent c59c3b5 commit 40414bc

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

pages/about.js

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,40 @@
11
import RevealContentContainer from '@/components/containers/RevealContentContainer';
22
import Title from '@/components/snippets/Title';
33
import TwoColumn from '@/components/containers/TwoColumn';
4-
import { white, primary } from '@/styles/TwoColumn.module.scss';
4+
import { white, primary, primaryAccent } from '@/styles/TwoColumn.module.scss';
55
import Container from '@/components/containers/Container';
66

77
export default function AboutUs() {
88
return (
99
<div className='about-us'>
10+
<RevealContentContainer>
11+
{/* ================================OUR BACKGROUND SECTION============== */}
12+
<Container>
13+
<Title title='Our background' />
14+
<TwoColumn
15+
content={
16+
<div>
17+
The Web Dev Path project was idealized in 2020 in consequence of
18+
many conversations with aspirant web developers as well as by
19+
considering some personal experiences.
20+
<br />
21+
<br />
22+
When talking to other junior developers, it was evident the lack
23+
of practical experience with version control in a team dynamic
24+
was making their integration in a professional environment
25+
harder.
26+
</div>
27+
}
28+
rowOrder='row'
29+
image='/images/svg/square-brackets.svg'
30+
color={primary}
31+
bgColor={primaryAccent}
32+
customInnerClass='about-content'
33+
/>
34+
</Container>
35+
{/* ================================OUR BACKGROUND SECTION============== */}
36+
</RevealContentContainer>
37+
1038
<RevealContentContainer>
1139
<Container>
1240
<Title title='About Web Dev Path' />

styles/TwoColumn.module.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,6 @@
109109
:export {
110110
white: $white;
111111
primary: $primary-content-color;
112+
primaryAccent: $primary-accent-color;
113+
//kl added export primaryAccent
112114
}

0 commit comments

Comments
 (0)