diff --git a/common/app/components/Nav/Nav.jsx b/common/app/components/Nav/Nav.jsx index 28f89102a3..875cdcf780 100644 --- a/common/app/components/Nav/Nav.jsx +++ b/common/app/components/Nav/Nav.jsx @@ -1,5 +1,6 @@ import React, { PropTypes } from 'react'; import ReactDOM from 'react-dom'; +import { Link } from 'react-router'; import { LinkContainer } from 'react-router-bootstrap'; import { Col, @@ -135,13 +136,15 @@ export default class extends React.Component { return null; } return ( - - [ { points } ] - + + [ { points } ] + + ); } @@ -156,12 +159,12 @@ export default class extends React.Component { eventKey={ 2 } key='user' > - + - + ); } else { diff --git a/common/app/routes/settings/components/Settings.jsx b/common/app/routes/settings/components/Settings.jsx index 422e2f4de2..0ca4ad9c2f 100644 --- a/common/app/routes/settings/components/Settings.jsx +++ b/common/app/routes/settings/components/Settings.jsx @@ -1,5 +1,6 @@ import React, { PropTypes } from 'react'; import { Button, Row, Col } from 'react-bootstrap'; +import FA from 'react-fontawesome'; import LockedSettings from './Locked-Settings.jsx'; import SocialSettings from './Social-Settings.jsx'; @@ -10,6 +11,7 @@ import DeleteModal from './Delete-Modal.jsx'; export default class Settings extends React.Component { static displayName = 'Settings'; static propTypes = { + username: PropTypes.string, isLocked: PropTypes.bool, isGithubCool: PropTypes.bool, isTwitter: PropTypes.bool, @@ -22,6 +24,7 @@ export default class Settings extends React.Component { render() { const { + username, isLocked, isGithubCool, isTwitter, @@ -33,6 +36,38 @@ export default class Settings extends React.Component { } = this.props; return (
+ + + + + + +

Settings for your Account

Actions