diff --git a/app/src/pages/Budgets.tsx b/app/src/pages/Budgets.tsx
index ec687baa..1f6dec41 100644
--- a/app/src/pages/Budgets.tsx
+++ b/app/src/pages/Budgets.tsx
@@ -110,6 +110,73 @@ export function Budgets() {
Budget Management
+
Track your budget categories and savings goals in one place.
+
+
+
+
+
+ {/* Savings Goals Section */}
+
+ {budgetGoals.map((goal) => {
+ const progress = (goal.current / goal.target) * 100;
+ return (
+
+
+
+
+
+ {goal.title}
+
+
+ {goal.status.replace('-', ' ')}
+
+
+
+ Target: {goal.deadline}
+
+
+
+
+
+
+ ${goal.current.toLocaleString()}
+
+
+ of ${goal.target.toLocaleString()} goal
+
+
+
+
+ ${goal.monthlyTarget}/mo
+
+
+
+ {/* Progress Bar */}
+
+
= 100 ? 'bg-success' : 'bg-primary'
+ }`}
+ style={{ width: `${Math.min(progress, 100)}%` }}
+ />
+
+
+ {progress.toFixed(1)}% achieved
+
+
+
+ );
+ })}
+
+
+
+
Expense Categories
+ agement
Track your spending and stay on top of your financial goals