Files: b92fdd1ec98a507fd2a0a56b3a1672da8aad1033 / _components / talks / Content.js
796 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 | <h1 className={titleStyle}> |
14 | Talks |
15 | </h1> |
16 | <ul> |
17 | <li className={listStyle}> |
18 | <Anchor href="https://speakerdeck.com/romuloalves/componentizando-suas-views-com-react" title="Dojo React at CWI Software"> |
19 | Dojo React at @cwisoftware |
20 | </Anchor> |
21 | </li> |
22 | </ul> |
23 | </div> |
24 | </Content> |
25 | ); |
26 | |
27 | const titleStyle = css({ |
28 | color: '#000', |
29 | marginBottom: '10px' |
30 | }); |
31 | |
32 | const listStyle = css({ |
33 | fontSize: '10pt', |
34 | listStyle: 'none', |
35 | marginBottom: '20px', |
36 | textAlign: 'left' |
37 | }); |
38 |
Built with git-ssb-web