diff options
author | Vitaly Takmazov | 2018-08-24 11:56:38 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 2042567217b7dcd558f2882658bec1f9c28f557c (patch) | |
tree | f5c3553485aea5769213a44e99086aa60b6c643d /vnext/src/components | |
parent | 1d39deaffaac811c65648f7e99520e568bc80722 (diff) |
Make footer static
Diffstat (limited to 'vnext/src/components')
-rw-r--r-- | vnext/src/components/Footer.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/vnext/src/components/Footer.js b/vnext/src/components/Footer.js deleted file mode 100644 index a6d89a5d..00000000 --- a/vnext/src/components/Footer.js +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import Icon from './Icon'; - -export default function Footer(props) { - - return ( - <div id="footer"> - <div id="footer-right"> · - <a href="/help/contacts" rel="nofollow">Contacts</a> · - <a href="/help/tos" rel="nofollow">TOS</a> - </div> - <div id="footer-social"> - <a href="https://twitter.com/Juick" rel="nofollow"><Icon name="ei-sc-twitter" size="m" /></a> - <a href="https://vk.com/juick" rel="nofollow"><Icon name="ei-sc-vk" size="m" /></a> - <a href="https://www.facebook.com/JuickCom" rel="nofollow"><Icon name="ei-sc-facebook" size="m" /></a> - </div> - <div id="footer-left">juick.com © 2008-2018 - </div> - { - props.links && - <div>Sponsors: {props.links}</div> - } - </div> - ); -} - -Footer.propTypes = { - links: PropTypes.string -}; |