Files: 90f1fa10f4cf1eadad9cd3539872fd71cc183030 / components / header.js
385 bytesRaw
1 | import Social from './social'; |
2 | |
3 | export default () => ( |
4 | <header> |
5 | <div> |
6 | <h1>Rômulo Alves</h1> |
7 | </div> |
8 | <Social /> |
9 | |
10 | <style jsx>{` |
11 | div { |
12 | left: 0; |
13 | margin-bottom: 5px; |
14 | padding: 50px 0 15px; |
15 | right: 0; |
16 | text-align: center; |
17 | top: 0; |
18 | } |
19 | |
20 | div h1 { |
21 | font-size: 25pt; |
22 | } |
23 | `}</style> |
24 | </header> |
25 | ); |
Built with git-ssb-web