-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
64 lines (56 loc) · 1.96 KB
/
index.js
File metadata and controls
64 lines (56 loc) · 1.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { rem } from 'polished'
import styled from 'styled-components'
import { Form, Heading, SiteHeader, Text } from 'components'
import styles from 'styles/Home.module.css'
const LinkContainer = styled(Text)`
margin-top: ${rem('8px')};
margin-bottom: ${rem('42px')};
a {
color: #ff6ab9;
}
`
export default function Home() {
return (
<div className={styles.container}>
<SiteHeader />
<div className={styles.contentWrapper}>
<div className={styles.contentContainer}>
<div className={styles.contentSection}>
<Heading>Take control of your career</Heading>
<Heading variant={Heading.VARIANT.h2}>Connect</Heading>
<Text>
Build meaningful relationships in a distributed community of
Software Engineers
</Text>
<Heading variant={Heading.VARIANT.h2}>Explore</Heading>
<Text>
Get matched with challenging projects at exciting Silicon Valley
startups and build impactful products
</Text>
<Heading variant={Heading.VARIANT.h2}>Elevate</Heading>
<Text>
Refine or expand your expertise through hands-on projects,
peer-to-peer coaching and professional development opportunities
</Text>
</div>
<div className={styles.contentSection}>
<Heading variant={Heading.VARIANT.h3}>
Commit is currently in closed-beta. Apply now to be a part of the
community soon.
</Heading>
<LinkContainer>
<a
href="https://www.notion.so/Commit-for-Software-Engineers-6608ecb933da4e449c16e67834ec0f4e"
rel="noopener noreferrer"
target="_blank"
>
Why you should apply today
</a>
</LinkContainer>
<Form />
</div>
</div>
</div>
</div>
)
}