Skip to content

Commit

Permalink
Integrate logo
Browse files Browse the repository at this point in the history
  • Loading branch information
gocreating committed Nov 29, 2016
1 parent 2d5a14f commit a527b4f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions src/common/components/utils/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,20 @@ class Navigation extends Component {
<Navbar staticTop>
<Grid>
<Navbar.Header>
<Link className="navbar-brand" to="/" >
Logo
<Link
className="navbar-brand"
to="/"
style={{
padding: 5,
}}
>
<img
src="/img/logo.png"
style={{
display: 'block',
height: '100%',
}}
/>
</Link>
</Navbar.Header>

Expand Down
Binary file removed src/public/img/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/server/middlewares/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default ({ app }) => {
}

// favicon
app.use(favicon(path.join(__dirname, '../../public/img/favicon.ico')));
app.use(favicon(path.join(__dirname, '../../public/img/logo.png')));

// log request
app.use(morgan);
Expand Down

0 comments on commit a527b4f

Please sign in to comment.