forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
26 lines (24 loc) · 676 Bytes
/
index.tsx
File metadata and controls
26 lines (24 loc) · 676 Bytes
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
import * as React from 'react'
import Logo from '../Logo'
import { QuickstartWrapper, Quickstart } from './elements'
import Icon from '../Icon'
const FrontPage: React.SFC = () => (
<React.Fragment>
<Logo />
<QuickstartWrapper>
<Quickstart>
<Icon>movie</Icon>
Video introduction
</Quickstart>
<Quickstart href="/guides/beginner/01_getstarted">
<Icon>guide</Icon>
Get started guide
</Quickstart>
<Quickstart href="https://spectrum.chat/overmindjs" target="_blank">
<Icon>chat</Icon>
Chat Support
</Quickstart>
</QuickstartWrapper>
</React.Fragment>
)
export default FrontPage