Commit b92fdd1ec98a507fd2a0a56b3a1672da8aad1033
Removing everything about jobs and talks page
Rômulo Alves committed on 2/22/2017, 9:44:01 AMParent: 33b9394e8d0e223eb848f055d1431a656b7ad384
Files changed
_components/talks/Content.js | changed |
_components/jobs/Content.js | deleted |
pages/index.js | changed |
pages/jobs.js | deleted |
pages/talks.js | deleted |
_components/talks/Content.js | ||
---|---|---|
@@ -9,13 +9,11 @@ | ||
9 | 9 | |
10 | 10 | export default () => ( |
11 | 11 | <Content> |
12 | 12 | <div className="container"> |
13 | - <Link href="/talks"> | |
14 | - <h1 className={titleStyle}> | |
15 | - Talks | |
16 | - </h1> | |
17 | - </Link> | |
13 | + <h1 className={titleStyle}> | |
14 | + Talks | |
15 | + </h1> | |
18 | 16 | <ul> |
19 | 17 | <li className={listStyle}> |
20 | 18 | <Anchor href="https://speakerdeck.com/romuloalves/componentizando-suas-views-com-react" title="Dojo React at CWI Software"> |
21 | 19 | Dojo React at @cwisoftware |
_components/jobs/Content.js | ||
---|---|---|
@@ -1,49 +1,0 @@ | ||
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 | -}); |
pages/index.js | ||
---|---|---|
@@ -9,25 +9,15 @@ | ||
9 | 9 | |
10 | 10 | // Components/Page |
11 | 11 | import Header from '../_components/index/Header'; |
12 | 12 | import NavBar from '../_components/index/NavBar'; |
13 | -import JobsContent from '../_components/jobs/Content'; | |
14 | 13 | import TalksContent from '../_components/talks/Content'; |
15 | 14 | |
16 | 15 | export default () => ( |
17 | 16 | <div> |
18 | 17 | <Head /> |
19 | 18 | <Header /> |
20 | 19 | <NavBar /> |
21 | - <Content> | |
22 | - <div className="container"> | |
23 | - <h1 className={titleStyle}>Where I am?</h1> | |
24 | - <Anchor href="https://www.google.com.br/maps/place/Sapiranga,+RS/@-29.6410773,-51.0112617,14z/data=!3m1!4b1!4m5!3m4!1s0x95193f737e8194df:0x571f590faf537198!8m2!3d-29.6353852!4d-51.0069543?hl=en" title="Sapiranga, Rio Grande do Sul, Brazil"> | |
25 | - Sapiranga, Rio Grande do Sul, Brazil | |
26 | - </Anchor> | |
27 | - </div> | |
28 | - </Content> | |
29 | - <JobsContent /> | |
30 | 20 | <TalksContent /> |
31 | 21 | </div> |
32 | 22 | ); |
33 | 23 |
pages/jobs.js | ||
---|---|---|
@@ -1,22 +1,0 @@ | ||
1 | -// Packages | |
2 | -import React from 'react'; | |
3 | -import css from 'next/css'; | |
4 | - | |
5 | -// Components/Common | |
6 | -import Head from '../_components/common/Head'; | |
7 | -import Content from '../_components/common/Content'; | |
8 | -import Anchor from '../_components/common/Anchor'; | |
9 | - | |
10 | -// Components/Page | |
11 | -import Header from '../_components/index/Header'; | |
12 | -import NavBar from '../_components/index/NavBar'; | |
13 | -import JobsContent from '../_components/jobs/Content'; | |
14 | - | |
15 | -export default () => ( | |
16 | - <div> | |
17 | - <Head title="jobs" /> | |
18 | - <Header /> | |
19 | - <NavBar /> | |
20 | - <JobsContent /> | |
21 | - </div> | |
22 | -); |
pages/talks.js | ||
---|---|---|
@@ -1,22 +1,0 @@ | ||
1 | -// Packages | |
2 | -import React from 'react'; | |
3 | -import css from 'next/css'; | |
4 | - | |
5 | -// Components/Common | |
6 | -import Head from '../_components/common/Head'; | |
7 | -import Content from '../_components/common/Content'; | |
8 | -import Anchor from '../_components/common/Anchor'; | |
9 | - | |
10 | -// Components/Page | |
11 | -import Header from '../_components/index/Header'; | |
12 | -import NavBar from '../_components/index/NavBar'; | |
13 | -import TalksContent from '../_components/talks/Content'; | |
14 | - | |
15 | -export default () => ( | |
16 | - <div> | |
17 | - <Head title="talks" /> | |
18 | - <Header /> | |
19 | - <NavBar /> | |
20 | - <TalksContent /> | |
21 | - </div> | |
22 | -); |
Built with git-ssb-web