File tree Expand file tree Collapse file tree 3 files changed +25
-6
lines changed Expand file tree Collapse file tree 3 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ export default function AboutUs() {
9
9
< div className = 'about-us' >
10
10
< RevealContentContainer >
11
11
{ /* ================================OUR BACKGROUND SECTION============== */ }
12
- < Container >
13
- < Title title = 'Our background' />
12
+ { /* <Container> */ }
13
+ { /* <Title title='Our background' /> */ }
14
14
< TwoColumn
15
+ title = "Our background"
15
16
content = {
16
17
< div >
17
18
The Web Dev Path project was idealized in 2020 in consequence of
@@ -29,9 +30,9 @@ export default function AboutUs() {
29
30
image = '/images/svg/square-brackets.svg'
30
31
color = { primary }
31
32
bgColor = { primaryAccent }
32
- customInnerClass = 'about-content '
33
+ customInnerClass = 'our-background '
33
34
/>
34
- </ Container >
35
+ { /* </Container> */ }
35
36
{ /* ================================OUR BACKGROUND SECTION============== */ }
36
37
</ RevealContentContainer >
37
38
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Stick from '@/components/decorations/Stick';
3
3
import TwoColumn from '@/components/containers/TwoColumn' ;
4
4
import CardsColumns from '@/components/containers/CardsColumns' ;
5
5
import styles from '@/styles/Home.module.scss' ;
6
- import { white , primary } from '@/styles/TwoColumn.module.scss' ;
6
+ import { white , primary , lightBgColor } from '@/styles/TwoColumn.module.scss' ;
7
7
import RevealContentContainer from '@/components/containers/RevealContentContainer' ;
8
8
9
9
export default function Home ( ) {
@@ -17,6 +17,7 @@ export default function Home() {
17
17
content = 'The Web Dev Path is a team of professional developers project that aims to provide a comprehensive path for people who seek to begin their web development journey.'
18
18
link = '/about'
19
19
customBtnClass = 'inverted-grey'
20
+ bgColor = { lightBgColor }
20
21
/>
21
22
</ RevealContentContainer >
22
23
Original file line number Diff line number Diff line change 2
2
@use ' ./mixins' as * ;
3
3
4
4
.wrapper {
5
- background-color : $light-bg-color ;
5
+ // background-color: $light-bg-color;
6
+ // background-color: $primary-accent-color;
6
7
7
8
.inner {
8
9
padding : 5rem 0 ;
24
25
}
25
26
}
26
27
28
+ // added============================
29
+ & .our-background {
30
+ .inner__image {
31
+ flex-basis : 30rem ;
32
+ // height: 24rem;
33
+ .img {
34
+ max-width : 24rem ;
35
+ object-fit : contain ;
36
+ transform : scale (0.65 );
37
+ }
38
+ }
39
+ }
40
+
41
+ // added============================
42
+
27
43
& .about-content {
28
44
align-items : center ;
29
45
padding : 0px ;
110
126
white : $white ;
111
127
primary : $primary-content-color ;
112
128
primary Accent : $primary-accent-color ;
129
+ light Bg Color : $light-bg-color ;
113
130
// kl added export primaryAccent
114
131
}
You can’t perform that action at this time.
0 commit comments