feat: add finance widget and CSS/template updates

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Tanmay Karande
2026-03-17 00:36:43 -04:00
parent c8b7322f13
commit 492e0ec47c
11 changed files with 326 additions and 14 deletions

14
finance.json Normal file
View File

@@ -0,0 +1,14 @@
{
"accounts": [
{"name": "Checking", "balance": 4250.00, "currency": "USD"},
{"name": "Savings", "balance": 12400.00, "currency": "USD"},
{"name": "Credit Card", "balance": -850.50, "currency": "USD"},
{"name": "Investments", "balance": 34800.00, "currency": "USD"}
],
"monthly": {
"labels": ["Oct", "Nov", "Dec", "Jan", "Feb", "Mar"],
"income": [4000, 4000, 5200, 4000, 4000, 4100],
"expenses": [2100, 2400, 3100, 1800, 2000, 2200],
"spend": [800, 1100, 1600, 600, 700, 900]
}
}