diff --git a/packages/main-feature/src/pages/general/dateStatus/index.tsx b/packages/main-feature/src/pages/general/dateStatus/index.tsx index 633054d..3511925 100644 --- a/packages/main-feature/src/pages/general/dateStatus/index.tsx +++ b/packages/main-feature/src/pages/general/dateStatus/index.tsx @@ -20,9 +20,9 @@ const DateStatus = () => { const isHealthy = true; // false로 변경하면 '아픈' 상태 표시 const healthStatus = { - image: isHealthy ? "/General/main-healthy.png" : "/General/main-sick.png", + character: isHealthy ? "/General/home/heal.png" : "/General/home/sick.png", + background: isHealthy ? "/General/home/healbackground.png" : "/General/home/sickbackground.png", text: isHealthy ? "건강해요!" : "아파요..", - ellipse: "/General/Ellipse-15063.png", // 배경 이미지 (필요시 사용) }; return ( @@ -38,12 +38,22 @@ const DateStatus = () => { ))} -