diff --git a/website/core/Footer.js b/website/core/Footer.js index 97a40a030f..286ebec50e 100644 --- a/website/core/Footer.js +++ b/website/core/Footer.js @@ -7,6 +7,24 @@ const React = require("react"); +const GithubButton = props => ( + + Star + +); + +GithubButton.propTypes = { + config: React.PropTypes.object +}; + class Footer extends React.Component { render() { return ( @@ -25,10 +43,28 @@ class Footer extends React.Component {
Docs
Getting Started + + Versioning + + + Localization + + + Adding Search +
Community
@@ -38,21 +74,16 @@ class Footer extends React.Component { > User Showcase + + Twitter +
More
GitHub - - Star - +
diff --git a/website/siteConfig.js b/website/siteConfig.js index 157e2aae25..f0c962c5cd 100644 --- a/website/siteConfig.js +++ b/website/siteConfig.js @@ -81,7 +81,8 @@ const siteConfig = { copyright: "Copyright © " + new Date().getFullYear() + " Facebook Inc.", highlight: { theme: "solarized-dark" - } + }, + scripts: ["https://buttons.github.io/buttons.js"] }; module.exports = siteConfig;