Build a Finance Dashboard

2025-08-07

A high level overview of your finances is very helpful

Image for post

Finance Dashboard built with NextJS and ShadCN

Check out my GitHub project here so you can make a dashboard yourself!

GitHub - NextJS Finances

Put your data into the /public/spending.json file like below. Then run pnpm dev to see your visualizations on http://localhost:3000 in your browser!

./public/spending.json
[
  {
    "period": "2025-03",
    "total": 3821.55,
    "budget": 2000.00,
    "categories": [
      { "category": "Books", "amount": 45.99 },
      { "category": "Transportation", "amount": 120.5 },
      { "category": "Dining", "amount": 301.2 },
      { "category": "Groceries", "amount": 642.35 },
      { "category": "Utilities", "amount": 132.87 },
      { "category": "Health", "amount": 230.5 },
      { "category": "Shopping", "amount": 713.25 },
      { "category": "Entertainment", "amount": 57.99 },
      { "category": "Gifts", "amount": 99.95 },
      { "category": "Rent", "amount": 1477.95 }
    ]
  },
  ...
]
Specify your spending data