|
1 | 1 | import RevealContentContainer from '@/components/containers/RevealContentContainer';
|
2 | 2 | import Title from '@/components/snippets/Title';
|
3 | 3 | 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'; |
5 | 5 | import Container from '@/components/containers/Container';
|
6 | 6 |
|
7 | 7 | export default function AboutUs() {
|
8 | 8 | return (
|
9 | 9 | <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 | + |
10 | 38 | <RevealContentContainer>
|
11 | 39 | <Container>
|
12 | 40 | <Title title='About Web Dev Path' />
|
|
0 commit comments