|
1 | 1 | import RevealContentContainer from '@/components/containers/RevealContentContainer'; |
2 | 2 | import TwoColumn from '@/components/containers/TwoColumn'; |
3 | | -import { white, primary, primaryAccent } 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'; |
@@ -127,6 +132,78 @@ export default function AboutUs() { |
127 | 132 | customInnerClass='our-purpose' |
128 | 133 | /> |
129 | 134 | </RevealContentContainer> |
| 135 | + <RevealContentContainer> |
| 136 | + <TwoColumn |
| 137 | + title='Wanna learn more?' |
| 138 | + content={''} |
| 139 | + image='/images/svg/close-curly-bracket.svg' |
| 140 | + color={primary} |
| 141 | + bgColor={lightBgColor} |
| 142 | + customInnerClass='wanna-learn-more' |
| 143 | + /> |
| 144 | + <TwoColumn |
| 145 | + title="Junior Developers" |
| 146 | + content={ |
| 147 | + 'If you are a junior web developer looking for some guidance and mentoring, ' + |
| 148 | + 'we invite you to join us and start coding our platform. ' + |
| 149 | + "You will learn how to code in a team environment by following issue's " + |
| 150 | + 'instructions and submitting your code to our repository through a ' + |
| 151 | + 'PR while guided throughout the entire process.\n' |
| 152 | + } |
| 153 | + linkText='Our wiki' |
| 154 | + openNewTab |
| 155 | + link='https://github.com/Web-Dev-Path/web-dev-path/wiki' |
| 156 | + customBtnClass='inverted-grey' |
| 157 | + color={primary} |
| 158 | + bgColor={lightBgColor} |
| 159 | + customInnerClass='two-text-columns' |
| 160 | + secondTextColumn={ |
| 161 | + <TwoColumn |
| 162 | + title="Experienced Developers" |
| 163 | + content={ |
| 164 | + 'If you are an experienced and patient-loving developer, ' + |
| 165 | + 'a true rockstar who wants to mentor juniors, ' + |
| 166 | + "it will be wonderful to have your help to review those PR's, " + |
| 167 | + 'write detailed issues and guide the developers when necessary.\n' |
| 168 | + } |
| 169 | + linkText='Contact us' |
| 170 | + link='/contact' |
| 171 | + customBtnClass='inverted-grey' |
| 172 | + color={primary} |
| 173 | + bgColor={lightBgColor} |
| 174 | + customInnerClass='second-text-column' |
| 175 | + /> |
| 176 | + } |
| 177 | + /> |
| 178 | + </RevealContentContainer> |
| 179 | + <RevealContentContainer> |
| 180 | + <TwoColumn |
| 181 | + title='How to get started?' |
| 182 | + content={ |
| 183 | + <div> |
| 184 | + After taking a look at our project |
| 185 | + <a target='_blank' |
| 186 | + href='https://github.com/Web-Dev-Path/web-dev-path#readme' |
| 187 | + rel='noopener noreferrer' >README</a> and |
| 188 | + <a target='_blank' |
| 189 | + href='https://github.com/Web-Dev-Path/web-dev-path/wiki' |
| 190 | + rel='noopener noreferrer' >wiki</a>, |
| 191 | + just send us an email sharing with us about your journey in tech and |
| 192 | + why you’re interested in joining us. |
| 193 | + <br/> |
| 194 | + We've got you! |
| 195 | + </div> |
| 196 | + } |
| 197 | + rowOrder='row-reverse' |
| 198 | + image='/images/svg/slash.svg' |
| 199 | + color={primary} |
| 200 | + bgColor={white} |
| 201 | + customInnerClass='get-started' |
| 202 | + link="mailto:hello@webdevpath.co" |
| 203 | + linkText="Ping Us" |
| 204 | + customBtnClass='inverted-grey' |
| 205 | + /> |
| 206 | + </RevealContentContainer> |
130 | 207 | </div> |
131 | 208 | ); |
132 | 209 | } |
0 commit comments