tsx
38 lines
1.3 KB
| 1 | import React from 'react'; |
| 2 | |
| 3 | const footerStyle = { |
| 4 | padding: '0 30 30 30', |
| 5 | color: '#fff', |
| 6 | font: '11pt "Helvetica Neue", "Helvetica", Arial, sans-serif', |
| 7 | textShadow: '#000 0px 1px 0px', |
| 8 | lineHeight: '200%' |
| 9 | }; |
| 10 | |
| 11 | const linkStyle = { |
| 12 | display: 'inline-block', |
| 13 | margin: 4, |
| 14 | fontSize: '10pt', |
| 15 | textDecoration: 'none', |
| 16 | outline: 'none', |
| 17 | color: '#ddd', |
| 18 | background: '#222', |
| 19 | borderTop: '1px solid #333', |
| 20 | padding: '5px 8px', |
| 21 | MozBorderRadius: '3px', |
| 22 | WebkitBorderRadius: '3px', |
| 23 | borderRadius: '3px', |
| 24 | MozBoxShadow: '0px 1px 1px #000', |
| 25 | WebkitBoxShadow: '0px 1px 1px #000', |
| 26 | boxShadow: '0px 1px 1px #000' |
| 27 | }; |
| 28 | |
| 29 | const FooterLinks = () => ( |
| 30 | <footer style={footerStyle}> |
| 31 | <a style={linkStyle} href="https://stackoverflow.com/users/1137814/seto" title="StackOverflow" target="_blank" rel="noopener noreferrer">stackoverflow</a> |
| 32 | <a style={linkStyle} href="https://github.com/setoelkahfi" title="GitHub" target="_blank" rel="noopener noreferrer">github</a> |
| 33 | <a style={linkStyle} href="https://medium.com/@setoelkahfi" title="Medium" target="_blank" rel="noopener noreferrer">medium</a> |
| 34 | <a style={linkStyle} href="https://id.linkedin.com/in/setoelkahfi" title="LinkedIn" target="_blank" rel="noopener noreferrer">linkedin</a> |
| 35 | </footer> |
| 36 | ); |
| 37 | |
| 38 | export default FooterLinks; |