Files: 6b5b84b3614cf087b2199be76f9d915b13d8ae89 / _components / index / Header.js
270 bytesRaw
1 | // Packages |
2 | import React from 'react'; |
3 | import css from 'next/css'; |
4 | |
5 | export default () => ( |
6 | <header className={headerStyle}> |
7 | <h1>Rômulo Alves</h1> |
8 | </header> |
9 | ); |
10 | |
11 | const headerStyle = css({ |
12 | background: '#EF5350', |
13 | minHeight: '50%', |
14 | top: 0, |
15 | width: '100%' |
16 | }); |
17 |
Built with git-ssb-web