Files: d1965e6223c3a0dba5efd21a77f674689c9f1389 / _components / talks / Content.js
843 bytesRaw
1 | // Packages |
2 | import React from 'react'; |
3 | import css from 'next/css'; |
4 | import Link from 'next/link'; |
5 | |
6 | // Components |
7 | import Content from '../common/Content'; |
8 | import Anchor from '../common/Anchor'; |
9 | |
10 | export default () => ( |
11 | <Content> |
12 | <div className="container"> |
13 | <Link href="/talks"> |
14 | <h1 className={titleStyle}> |
15 | Talks |
16 | </h1> |
17 | </Link> |
18 | <ul> |
19 | <li className={listStyle}> |
20 | <Anchor href="https://speakerdeck.com/romuloalves/componentizando-suas-views-com-react" title="Dojo React at CWI Software"> |
21 | Dojo React at @cwisoftware |
22 | </Anchor> |
23 | </li> |
24 | </ul> |
25 | </div> |
26 | </Content> |
27 | ); |
28 | |
29 | const titleStyle = css({ |
30 | color: '#000', |
31 | marginBottom: '10px' |
32 | }); |
33 | |
34 | const listStyle = css({ |
35 | fontSize: '10pt', |
36 | listStyle: 'none', |
37 | marginBottom: '20px', |
38 | textAlign: 'left' |
39 | }); |
40 |
Built with git-ssb-web