Files: 994b7b81aefebcc50a030d69f1bf4f8292ded369 / pages / index.js
1112 bytesRaw
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 /> |
18 | <Header /> |
19 | <NavBar /> |
20 | <Content> |
21 | <div className={contentStyle}> |
22 | <h1 className={titleStyle}>Where am I?</h1> |
23 | <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"> |
24 | Sapiranga, Rio Grande do Sul, Brazil |
25 | </Anchor> |
26 | </div> |
27 | </Content> |
28 | <JobsContent /> |
29 | </div> |
30 | ); |
31 | |
32 | const titleStyle = css({ |
33 | marginBottom: '10px' |
34 | }); |
35 | |
36 | const contentStyle = css({ |
37 | margin: '0 auto', |
38 | textAlign: 'center', |
39 | width: '300px' |
40 | }); |
41 |
Built with git-ssb-web