Files: d1965e6223c3a0dba5efd21a77f674689c9f1389 / _components / jobs / Content.js
1211 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="/jobs"> |
14 | <h1 className={titleStyle}> |
15 | Jobs |
16 | </h1> |
17 | </Link> |
18 | <ul> |
19 | <li className={listStyle}> |
20 | > from 12/2011 to now - <Anchor href="http://www.cwi.com.br/" title="cwi software">CWI Software</Anchor> |
21 | <br /> |
22 | Web developer |
23 | </li> |
24 | <li className={listStyle}> |
25 | > from 10/2011 to 12/2012 - <Anchor href="http://www.brivia.com.br/" title="brivia">Brivia</Anchor> |
26 | <br /> |
27 | Web developer |
28 | </li> |
29 | <li className={listStyle}> |
30 | > from 02/2011 to 10/2011 - <Anchor href="http://www.brivia.com.br/" title="brivia">Brivia</Anchor> |
31 | <br /> |
32 | Intern web developer |
33 | </li> |
34 | </ul> |
35 | </div> |
36 | </Content> |
37 | ); |
38 | |
39 | const titleStyle = css({ |
40 | color: '#000', |
41 | marginBottom: '10px' |
42 | }); |
43 | |
44 | const listStyle = css({ |
45 | fontSize: '10pt', |
46 | listStyle: 'none', |
47 | marginBottom: '20px', |
48 | textAlign: 'left' |
49 | }); |
50 |
Built with git-ssb-web