Skip to content

Commit 42aac87

Browse files
committed
add how to get started? section
1 parent 827ad4f commit 42aac87

File tree

4 files changed

+35
-1
lines changed

4 files changed

+35
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4646

4747
- Made the site a Progressive Web App (PWA)
4848
- About page content (first section)
49-
- About page "Wanna Learn More" section
49+
- About page "Wanna Learn More" and "How to get started?" section
5050
- An optional second column to TwoColumn instead of the image
5151

5252
### Fixed
@@ -61,3 +61,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6161
- updated 'about us' first section (our background, peer reviews, version control)
6262
- updated 'about us' section (our goals, our purpose)
6363
- updated mobile nav to automatically close when page route change is completed
64+
- adjust flex-basis of a few sections in the about page to better match the design file

pages/about.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,22 @@ export default function AboutUs() {
176176
}
177177
/>
178178
</RevealContentContainer>
179+
<RevealContentContainer>
180+
<TwoColumn
181+
title='How to get started?'
182+
content={
183+
<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.
185+
We've got you!
186+
</div>
187+
}
188+
rowOrder='row-reverse'
189+
image='/images/svg/slash.svg'
190+
color={primary}
191+
bgColor={white}
192+
customInnerClass='about-content'
193+
/>
194+
</RevealContentContainer>
179195
</div>
180196
);
181197
}

public/images/svg/slash.svg

Lines changed: 3 additions & 0 deletions
Loading

styles/TwoColumn.module.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,17 @@
8989
}
9090

9191
&.about-content {
92+
.content{
93+
max-width: 49rem;
94+
}
95+
96+
.inner__content{
97+
flex-basis: 65%;
98+
}
99+
92100
.inner__image {
93101
height: 10rem;
102+
flex-basis: 25%;
94103

95104
@include desktop {
96105
height: 15rem;
@@ -104,8 +113,13 @@
104113
}
105114

106115
&.our-purpose {
116+
.inner__content{
117+
flex-basis: 65%;
118+
}
119+
107120
.inner__image {
108121
height: 10rem;
122+
flex-basis: 25%;
109123

110124
@include desktop {
111125
height: 22rem;

0 commit comments

Comments
 (0)