Files: 05da29162cd94001b87a1366246df608c8a7fa4d / components / header.js
430 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 | background: #FF5252; |
13 | color: #FFF; |
14 | left: 0; |
15 | margin-bottom: 5px; |
16 | padding: 50px 0; |
17 | right: 0; |
18 | text-align: center; |
19 | top: 0; |
20 | } |
21 | |
22 | div h1 { |
23 | font-size: 25pt; |
24 | } |
25 | `}</style> |
26 | </header> |
27 | ); |
Built with git-ssb-web