Skip to content

Commit a527b4f

Browse files
committed
Integrate logo
1 parent 2d5a14f commit a527b4f

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

src/common/components/utils/Navigation.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,20 @@ class Navigation extends Component {
3131
<Navbar staticTop>
3232
<Grid>
3333
<Navbar.Header>
34-
<Link className="navbar-brand" to="/" >
35-
Logo
34+
<Link
35+
className="navbar-brand"
36+
to="/"
37+
style={{
38+
padding: 5,
39+
}}
40+
>
41+
<img
42+
src="/img/logo.png"
43+
style={{
44+
display: 'block',
45+
height: '100%',
46+
}}
47+
/>
3648
</Link>
3749
</Navbar.Header>
3850

src/public/img/favicon.ico

-361 KB
Binary file not shown.

src/server/middlewares/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default ({ app }) => {
2525
}
2626

2727
// favicon
28-
app.use(favicon(path.join(__dirname, '../../public/img/favicon.ico')));
28+
app.use(favicon(path.join(__dirname, '../../public/img/logo.png')));
2929

3030
// log request
3131
app.use(morgan);

0 commit comments

Comments
 (0)