Skip to content

Commit 704923c

Browse files
committed
adding new logo
1 parent 53dd9f6 commit 704923c

File tree

3 files changed

+47
-1
lines changed

3 files changed

+47
-1
lines changed

src/components/TopBar.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react';
22
import { Link } from 'gatsby';
33

44
import Menu from './Menu';
5+
import NewLogo from '../images/new-logo.svg';
56

67
import * as css from './TopBar.module.css';
78

@@ -56,7 +57,7 @@ const TopBar = () => {
5657
<header className={css.root}>
5758
<div className={css.logo}>
5859
<Link to="/" aria-label="Go to homepage">
59-
<Logo width={250} />
60+
<NewLogo className={css.newLogo} />
6061
</Link>
6162
</div>
6263
<div className={css.clock}>🕛</div>

src/components/TopBar.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
padding: 0 var(--box-padding);
2020
}
2121

22+
.newLogo {
23+
width: 40px;
24+
}
25+
2226
.clock {
2327
font-family: var(--maru-emoji);
2428
font-size: var(--maru-emoji-normal);

src/images/new-logo.svg

Lines changed: 41 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)