diff --git a/components/SiteLinks/index.jsx b/components/SiteLinks/index.jsx index efcf74c..cd56af1 100644 --- a/components/SiteLinks/index.jsx +++ b/components/SiteLinks/index.jsx @@ -1,62 +1,59 @@ -import React from 'react' -import { RouteHandler, Link } from 'react-router' -import { prefixLink } from 'gatsby-helpers' -import { config } from 'config' -import './style.css' -import '../../static/fonts/fontawesome/style.css' +import React from 'react'; +import { config } from 'config'; +import './style.css'; +import '../../static/fonts/fontawesome/style.css'; class SiteLinks extends React.Component { - render () { - - return ( -
- -
    - {config.siteEmailUrl && ( -
  • - - - -
  • - )} - {config.siteTelegramUrl && ( -
  • - - - -
  • - )} -
-
    - {config.siteRssUrl && ( -
  • - -
  • - )} -
-
- ) + render() { + return ( +
+
    + {config.siteTwitterUrl && ( +
  • + + + +
  • + )} + {config.siteGithubUrl && ( +
  • + + + +
  • + )} + {config.siteVkUrl && ( +
  • + +
  • + )} +
+
    + {config.siteEmailUrl && ( +
  • + + + +
  • + )} + {config.siteTelegramUrl && ( +
  • + + + +
  • + )} +
+
    + {config.siteRssUrl && ( +
  • + +
  • + )} +
+
+ ); } } -export default SiteLinks +export default SiteLinks;