import React from 'react'; import { GlassCard } from '@/components/ui/GlassCard'; import { formatAmount } from '@/lib/utils'; import { DirhamIcon } from '@/components/ui/custom-icons'; import { Wallet, ShoppingBag, TrendingDown, PiggyBank } from 'lucide-react'; const BudgetSummaryCards: React.FC = () => { // Hardcoded design values const data = { income: 17500, spent: 9600, budget: 15000, savingsRate: 24 }; const remaining = data.budget - data.spent; return (
{/* Total Income */}

Total Income

{formatAmount(data.income)}

Monthly inflow

{/* Total Spent */}

Total Spent

{formatAmount(data.spent)}

{(data.spent / data.income * 100).toFixed(1)}% of income

{/* Budget Remaining */}

Budget Remaining

{formatAmount(remaining)}

{/* Savings Rate */}

Savings Rate

{data.savingsRate}%

+2% from last month

); }; export default BudgetSummaryCards;