Skip to content

Commit 2641717

Browse files
committed
[feat] 굿즈 사진 추가
1 parent 8e528a0 commit 2641717

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

src/assets/cup.png

150 KB
Loading

src/assets/doll.png

240 KB
Loading

src/assets/tshirt.png

187 KB
Loading

src/components/Popup/GiftPopup.jsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import React, { useEffect } from "react";
22
import Back3DBtnIcon from "../../assets/icons/Back_3D_btn.svg";
33
import PointButton from "../PointButton";
44
import GoodsCard from "../GoodsCard";
5+
import Cup from "../../assets/cup.png";
6+
import TShirt from "../../assets/tshirt.png";
7+
import Doll from "../../assets/doll.png";
58
import GoodsCardImg from "../../assets/goods_card.png";
69
import { useNavStore } from "../../stores/navStore";
710
const GiftPopup = ({ onClose, point, setPoint }) => {
@@ -15,19 +18,19 @@ const GiftPopup = ({ onClose, point, setPoint }) => {
1518
}, []);
1619
const goodsItems = [
1720
{
18-
imageSrc: GoodsCardImg,
21+
imageSrc: TShirt,
1922
title: "CLP 티셔츠",
2023
description: "귀여운 CLP 캐릭터가 \n중앙에 위치한 티셔츠",
2124
point: 2000,
2225
},
2326
{
24-
imageSrc: GoodsCardImg,
25-
title: "CLP 폰케이스",
26-
description: "CLP 폰케이스는 \n방어력이 어마무시!",
27+
imageSrc: Doll,
28+
title: "CLP 키링",
29+
description: "지구방위대의 \n방어력이 어마무시!",
2730
point: 2000,
2831
},
2932
{
30-
imageSrc: GoodsCardImg,
33+
imageSrc: Cup,
3134
title: "CLP 머그컵",
3235
description: "CLP 머그컵으로 \n물 마시면서 건강 찾자!",
3336
point: 2000,

0 commit comments

Comments
 (0)