diff --git a/README.md b/README.md index 9d217c8..a28d503 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # es6-interactive-guide + An interactive guide to ES6 -[live site](http://projects.formidablelabs.com/es6-interactive-guide/) +[live site](https://stack.formidable.com/es6-interactive-guide/) Running the page locally: + ``` npm install webpack // add --watch if you like // open index.html in browser -``` \ No newline at end of file +``` diff --git a/components/footer.jsx b/components/footer.jsx index 4cfa163..829060f 100644 --- a/components/footer.jsx +++ b/components/footer.jsx @@ -1,68 +1,68 @@ -'use strict'; +"use strict"; -import React from 'react/addons'; -import Radium from 'radium'; +import React from "react/addons"; +import Radium from "radium"; -import Container from './container.jsx'; +import Container from "./container.jsx"; const styles = { footer: { - padding: '36px 0', - background: '#2b303b', - color: '#fff', - textAlign: 'center', + padding: "36px 0", + background: "#2b303b", + color: "#fff", + textAlign: "center", fontSize: 18, - borderTop: '1px solid #1D2227' + borderTop: "1px solid #1D2227" }, logoLink: { - display: 'block', - margin: '16px 0' + display: "block", + margin: "16px 0" }, link: { fontWeight: 700, - color: '#FF4136', + color: "#FF4136", - ':hover': { - color: '#fff' + ":hover": { + color: "#fff" } } }; -export default React.createClass(Radium.wrap({ - displayName: 'Footer', +export default React.createClass( + Radium.wrap({ + displayName: "Footer", - render() { - return ( - - ); - } -})); +
+ {"P.S. "} + + We’re hiring + + . +
+ + + ); + } + }) +);