1
1
import RevealContentContainer from '@/components/containers/RevealContentContainer' ;
2
2
import TwoColumn from '@/components/containers/TwoColumn' ;
3
- import { white , primary , primaryAccent , lightBgColor } from '@/styles/TwoColumn.module.scss' ;
3
+ import {
4
+ white ,
5
+ primary ,
6
+ primaryAccent ,
7
+ lightBgColor ,
8
+ } from '@/styles/TwoColumn.module.scss' ;
4
9
import CardsColumns from '@/components/containers/CardsColumns' ;
5
10
import Title from '@/components/snippets/Title' ;
6
11
import Container from '@/components/containers/Container' ;
@@ -138,29 +143,38 @@ export default function AboutUs() {
138
143
customInnerClass = 'wanna-learn-more'
139
144
/>
140
145
< TwoColumn
141
- title = { < div > Junior < br /> Developers</ div > }
146
+ title = {
147
+ < div >
148
+ Junior < br /> Developers
149
+ </ div >
150
+ }
142
151
content = {
143
152
'If you are a junior web developer looking for some guidance and mentoring, ' +
144
153
'we invite you to join us and start coding our platform. ' +
145
- ' You will learn how to code in a team environment by following issue\ 's ' +
154
+ " You will learn how to code in a team environment by following issue's " +
146
155
'instructions and submitting your code to our repository through a ' +
147
156
'PR while guided throughout the entire process.\n'
148
- }
157
+ }
149
158
rowOrder = 'row'
150
159
linkText = 'Our wiki'
151
160
link = 'https://github.com/Web-Dev-Path/web-dev-path/wiki'
152
161
customBtnClass = 'inverted-grey'
153
162
color = { primary }
154
163
bgColor = { lightBgColor }
155
164
customInnerClass = 'two-text-columns'
156
- secondTextColumn =
165
+ secondTextColumn = {
157
166
< TwoColumn
158
- title = { < div > Experienced < br /> Developers</ div > }
159
- content = { 'If you are an experienced and patient-loving developer, ' +
167
+ title = {
168
+ < div >
169
+ Experienced < br /> Developers
170
+ </ div >
171
+ }
172
+ content = {
173
+ 'If you are an experienced and patient-loving developer, ' +
160
174
'a true rockstar who wants to mentor juniors, ' +
161
- ' it will be wonderful to have your help to review those PR\ 's, ' +
175
+ " it will be wonderful to have your help to review those PR's, " +
162
176
'write detailed issues and guide the developers when necessary.\n'
163
- }
177
+ }
164
178
rowOrder = 'row'
165
179
linkText = 'Contact us'
166
180
link = '/contact'
@@ -169,6 +183,7 @@ export default function AboutUs() {
169
183
bgColor = { lightBgColor }
170
184
customInnerClass = 'second-text-column'
171
185
/>
186
+ }
172
187
/>
173
188
</ RevealContentContainer >
174
189
</ div >
0 commit comments