Files: 994b7b81aefebcc50a030d69f1bf4f8292ded369 / _components / jobs / Content.js
1345 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={contentStyle}> |
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 - Web developer<br /> |
21 | <Anchor href="http://www.cwi.com.br/" title="cwi software"> |
22 | CWI Software |
23 | </Anchor> |
24 | </li> |
25 | <li className={listStyle}> |
26 | > from 10/2011 to 12/2012 - Web developer<br /> |
27 | <Anchor href="http://www.brivia.com.br/" title="brivia"> |
28 | Brivia |
29 | </Anchor> |
30 | </li> |
31 | <li className={listStyle}> |
32 | > from 02/2011 to 10/2011 - Intern web developer<br /> |
33 | <Anchor href="http://www.brivia.com.br/" title="brivia"> |
34 | Brivia |
35 | </Anchor> |
36 | </li> |
37 | </ul> |
38 | </div> |
39 | </Content> |
40 | ); |
41 | |
42 | const titleStyle = css({ |
43 | color: '#000', |
44 | marginBottom: '10px' |
45 | }); |
46 | |
47 | const contentStyle = css({ |
48 | margin: '0 auto', |
49 | textAlign: 'center', |
50 | width: '300px' |
51 | }); |
52 | |
53 | const listStyle = css({ |
54 | fontSize: '10pt', |
55 | listStyle: 'none', |
56 | marginBottom: '20px', |
57 | textAlign: 'left' |
58 | }); |
59 |
Built with git-ssb-web