Skip to content

Commit

Permalink
fix navbar logo quality issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jinkang-0 committed May 20, 2024
1 parent e1ecc67 commit 915543b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Binary file modified public/images/ijp-logo-small.webp
Binary file not shown.
12 changes: 4 additions & 8 deletions src/components/NavBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import COLORS from '@/styles/colors';
import { Flex } from '@/styles/containers';
import { useAuth } from '@/utils/AuthProvider';
import { useProfile } from '@/utils/ProfileProvider';
import IJPlogo from '~/public/images/ijp-logo-small.webp';
import ijpLogo from '~/public/images/ijp-logo-small.webp';
import { ProfileButton, SmallLinkButton } from '../Buttons';
import * as Styles from './style';

Expand Down Expand Up @@ -97,13 +97,9 @@ export default function NavBar() {
<Styles.NavBarSectionDiv>
<Link href="/">
<Image
alt="background"
src={IJPlogo.src}
placeholder="blur"
blurDataURL={IJPlogo.src}
quality={100}
width={47}
height={47}
alt="logo"
src={ijpLogo}
style={{ width: '47px', height: '47px' }}
/>
</Link>
{navlinks.map(renderLink)}
Expand Down

0 comments on commit 915543b

Please sign in to comment.