From c60a86579775753b81e02a745f4fbb65eabfaf8f Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Wed, 11 Mar 2026 22:36:38 +0100 Subject: [PATCH] feat(03-03): add pastel-tinted loading skeletons to DashboardPage - Import palette from @/lib/palette - Replace generic skeleton block with tinted versions using palette.*.light colors - Grid layout mirrors dashboard structure: saving overview, bill/variable_expense row, debt/investment row --- frontend/src/pages/DashboardPage.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/DashboardPage.tsx b/frontend/src/pages/DashboardPage.tsx index 1748514..3ca702b 100644 --- a/frontend/src/pages/DashboardPage.tsx +++ b/frontend/src/pages/DashboardPage.tsx @@ -14,6 +14,7 @@ import { EmptyState } from '@/components/EmptyState' import { useBudgets } from '@/hooks/useBudgets' import { budgetItems as budgetItemsApi } from '@/lib/api' import { FolderOpen } from 'lucide-react' +import { palette } from '@/lib/palette' export function DashboardPage() { const { t } = useTranslation() @@ -41,8 +42,15 @@ export function DashboardPage() { return (
- - + +
+ + +
+
+ + +
) }