git ssb

0+

Rômulo Alves / website



Tree: 05da29162cd94001b87a1366246df608c8a7fa4d

Files: 05da29162cd94001b87a1366246df608c8a7fa4d / components / social.js

713 bytesRaw
1import Head from 'next/head';
2
3export default () => (
4 <div className="socials">
5 <Head>
6 <link rel="prefetch" href="/static/images/twitter.svg" />
7 <link rel="prefetch" href="/static/images/github.svg" />
8 </Head>
9 <a href="https://twitter.com/romuloalves" title="Twitter">
10 <img src="/static/images/twitter.svg" alt="Twitter" width="20" height="20" />
11 </a>
12 <a href="https://github.com/romuloalves" title="GitHub">
13 <img src="/static/images/github.svg" alt="GitHub" width="20" height="20" />
14 </a>
15
16 <style jsx>{`
17 .socials {
18 overflow: auto;
19 text-align: center;
20 }
21 .socials a {
22 margin: 0 10px;
23 }
24 `}</style>
25 </div>
26);

Built with git-ssb-web