Files: d1965e6223c3a0dba5efd21a77f674689c9f1389 / pages / index.js
1095 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 | import TalksContent from '../_components/talks/Content'; |
15 | |
16 | export default () => ( |
17 | <div> |
18 | <Head /> |
19 | <Header /> |
20 | <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 | <TalksContent /> |
31 | </div> |
32 | ); |
33 | |
34 | const titleStyle = css({ |
35 | marginBottom: '10px' |
36 | }); |
37 |
Built with git-ssb-web