-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.js
More file actions
36 lines (34 loc) · 1.12 KB
/
about.js
File metadata and controls
36 lines (34 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { Text, Footer, Page } from 'components'
import {
DiversityAndInclusionSection,
EpBuiltStartupsSection,
ExecutiveTeamSection,
OpensourceSection,
} from 'sections'
import styles from 'styles/about.module.css'
const About = () => (
<Page>
<section className={`${styles.hero}`}>
<div className={`${styles.sectionContent}`}>
<div className={styles.heroContent}>
<h1 className={styles.heroHeading}>
Commit is the remote-first community for Software Engineers.
</h1>
<Text sectionText className={styles.heroText}>
We’re designing a future of work that puts Engineers first. To that
end, we provide professional development, peer-to-peer support, and
access to the best startup opportunities. The result is that
Engineers have agency over their growth and the impact of their
work.
</Text>
</div>
</div>
</section>
<DiversityAndInclusionSection />
<ExecutiveTeamSection />
<EpBuiltStartupsSection />
<OpensourceSection />
<Footer />
</Page>
)
export default About