Skip to content

Commit 1ba80c5

Browse files
committed
update how to get started section
1 parent 42aac87 commit 1ba80c5

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

components/buttons/ButtonLink.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function ButtonLink({
1313
return (
1414
<a
1515
href={link}
16-
className={`${btnStyles.btn} ${btnStyles[customClassName]}`}
16+
className={customClassName?`${btnStyles.btn} ${btnStyles[customClassName]}`:btnStyles.btn}
1717
style={styles}
1818
target={openNewTab ? '_blank' : undefined}
1919
rel='noopener noreferrer'

pages/about.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,16 @@ export default function AboutUs() {
181181
title='How to get started?'
182182
content={
183183
<div>
184-
Just reach out on Slack and introduce yourself in our #general channel! There is where we get together. Once on our channel, someone will help you out.
184+
After taking a look at our project&nbsp;
185+
<a target='_blank'
186+
href='https://github.com/Web-Dev-Path/web-dev-path#readme'
187+
rel='noopener noreferrer' >README</a> and&nbsp;
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/>
185194
We've got you!
186195
</div>
187196
}
@@ -190,6 +199,9 @@ export default function AboutUs() {
190199
color={primary}
191200
bgColor={white}
192201
customInnerClass='about-content'
202+
link="mailto:[email protected]"
203+
linkText="Ping Us"
204+
customBtnClass='inverted-grey'
193205
/>
194206
</RevealContentContainer>
195207
</div>

0 commit comments

Comments
 (0)