Files: 90f1fa10f4cf1eadad9cd3539872fd71cc183030 / components / social.js
687 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="25" height="25" /> |
5 | </a> |
6 | <a href="https://github.com/romuloalves" title="GitHub"> |
7 | <img src="/static/images/github.svg" alt="GitHub" width="25" height="25" /> |
8 | </a> |
9 | <a href="https://keybase.io/romuloalves" title="Keybase"> |
10 | <img src="/static/images/keybase.svg" alt="Keybase" width="25" height="25" /> |
11 | </a> |
12 | |
13 | <style jsx>{` |
14 | .socials { |
15 | overflow: auto; |
16 | text-align: center; |
17 | } |
18 | .socials a { |
19 | margin: 0 10px; |
20 | } |
21 | `}</style> |
22 | </div> |
23 | ); |
Built with git-ssb-web