Skip to content

Commit c9052ae

Browse files
Update nav logo (#18)
1 parent a39a839 commit c9052ae

File tree

3 files changed

+32
-23
lines changed

3 files changed

+32
-23
lines changed

public/asset/nav_logo.svg

Lines changed: 29 additions & 0 deletions
Loading

public/asset/nav_spaceship.svg

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/components/Navbar/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const Navbar: React.FC = () => {
6464
<Container maxWidth={false}>
6565
<Box sx={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
6666
<Link href="/">
67-
<img src="asset/nav_spaceship.svg" className={s.ship} />
67+
<img src="asset/nav_logo.svg" className={s.ship} />
6868
</Link>
6969
<Box sx={{ display: 'flex', flexDirection: 'row', paddingRight: '8px' }}>
7070
{pages.map((page, index) => (
@@ -92,7 +92,7 @@ const Navbar: React.FC = () => {
9292
<Container maxWidth={false}>
9393
<Box sx={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
9494
<Link href="/">
95-
<img src="asset/nav_spaceship.svg" className={s.ship} />
95+
<img src="asset/nav_logo.svg" className={s.ship} />
9696
</Link>
9797
<IconButton
9898
size="large"
@@ -119,7 +119,7 @@ const Navbar: React.FC = () => {
119119
>
120120
<Toolbar sx={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
121121
<Link href="/" onClick={handleMobileClose}>
122-
<img src="asset/nav_spaceship.svg" className={s.ship} />
122+
<img src="asset/nav_logo.svg" className={s.ship} />
123123
</Link>
124124
<IconButton edge="start" color="primary" onClick={handleMobileClose} aria-label="close">
125125
<CloseIcon />

0 commit comments

Comments
 (0)