Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions public/asset/nav_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 0 additions & 20 deletions public/asset/nav_spaceship.svg

This file was deleted.

6 changes: 3 additions & 3 deletions src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Navbar: React.FC = () => {
<Container maxWidth={false}>
<Box sx={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
<Link href="/">
<img src="asset/nav_spaceship.svg" className={s.ship} />
<img src="asset/nav_logo.svg" className={s.ship} />
</Link>
<Box sx={{ display: 'flex', flexDirection: 'row', paddingRight: '8px' }}>
{pages.map((page, index) => (
Expand Down Expand Up @@ -92,7 +92,7 @@ const Navbar: React.FC = () => {
<Container maxWidth={false}>
<Box sx={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
<Link href="/">
<img src="asset/nav_spaceship.svg" className={s.ship} />
<img src="asset/nav_logo.svg" className={s.ship} />
</Link>
<IconButton
size="large"
Expand All @@ -119,7 +119,7 @@ const Navbar: React.FC = () => {
>
<Toolbar sx={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
<Link href="/" onClick={handleMobileClose}>
<img src="asset/nav_spaceship.svg" className={s.ship} />
<img src="asset/nav_logo.svg" className={s.ship} />
</Link>
<IconButton edge="start" color="primary" onClick={handleMobileClose} aria-label="close">
<CloseIcon />
Expand Down