Skip to content

Commit

Permalink
fix(Header)logo 경로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin-hong committed Oct 22, 2024
1 parent f845bb5 commit 4e9b19c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import useFestivalRegionStore from "../store/festivalRegionStore";

import { CloseIcon, DarkModeIcon } from "./ui/icon";

import logo from "../assets/images/logo.svg";

export default function Header() {
const location = useLocation();
const scrollRef = useRef(null);
Expand Down Expand Up @@ -75,7 +77,7 @@ export default function Header() {
<div className="flex justify-between mb-6">
<Link to="/" className="cursor-pointer mx-2">
<img
src="../assets/images/logo.svg"
src={logo}
alt="축제7ㅏ자 로고"
className="w-full object-cover"
/>
Expand Down

0 comments on commit 4e9b19c

Please sign in to comment.