diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index f043963..a34b69d 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -1,3 +1,4 @@ + import React, { useState } from 'react'; import NavBar from '@/components/NavBar'; import BudgetCard from '@/components/BudgetCard'; @@ -82,7 +83,8 @@ const Index = () => { - {/* 예산 카드 - 탭 추가 */} + {/* 목표 진행 상황 - 제목을 카드 위로 이동 */} +
{formatCurrency(budgetData.daily.spentAmount)}
/ {formatCurrency(budgetData.daily.targetAmount)}
@@ -135,8 +135,6 @@ const Index = () => {{formatCurrency(budgetData.weekly.spentAmount)}
/ {formatCurrency(budgetData.weekly.targetAmount)}
@@ -170,8 +168,6 @@ const Index = () => {{formatCurrency(budgetData.monthly.spentAmount)}
/ {formatCurrency(budgetData.monthly.targetAmount)}