Files: 9a9e87b1ac89ee650b8ce508a34b0bc139f4ee83 / components / social.js
532 bytesRaw
1 | export default () => ( |
2 | <div className="socials"> |
3 | <a href="https://twitter.com/romuloalves" title="Twitter"> |
4 | <img src="/static/images/twitter.svg" alt="Twitter" width="20" height="20" /> |
5 | </a> |
6 | <a href="https://github.com/romuloalves" title="GitHub"> |
7 | <img src="/static/images/github.svg" alt="GitHub" width="20" height="20" /> |
8 | </a> |
9 | |
10 | <style jsx>{` |
11 | .socials { |
12 | overflow: auto; |
13 | text-align: center; |
14 | } |
15 | .socials a { |
16 | margin: 0 10px; |
17 | } |
18 | `}</style> |
19 | </div> |
20 | ); |
Built with git-ssb-web