Skip to content

Commit

Permalink
♻️ refactor: logo 이미지 public -> src/assets 폴더로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
dongree committed Nov 14, 2024
1 parent 6b42070 commit bf5f549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
File renamed without changes
3 changes: 2 additions & 1 deletion FE/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import useAuthStore from 'store/authStore';
import useLoginModalStore from 'store/useLoginModalStore';
import useSearchModalStore from '../store/useSearchModalStore.ts';
import useSearchInputStore from '../store/useSearchInputStore.ts';
import logo from 'assets/Logo.png';

export default function Header() {
const { toggleModal } = useLoginModalStore();
Expand All @@ -14,7 +15,7 @@ export default function Header() {
<header className='fixed left-0 top-0 h-[60px] w-full'>
<div className='mx-auto flex h-full max-w-[1280px] items-center justify-between px-8'>
<Link to={'/'} className='flex items-center gap-2'>
<img src={'/Logo.png'} className={'h-[32px]'} />
<img src={logo} className={'h-[32px]'} />
<h1 className='text-xl font-bold text-juga-grayscale-black'>JuGa</h1>
</Link>

Expand Down

0 comments on commit bf5f549

Please sign in to comment.