From 60a6215ad376506cc6cff2a535cd0f3c5736ad27 Mon Sep 17 00:00:00 2001 From: Cosmo Date: Thu, 16 Apr 2026 15:47:21 +0000 Subject: [PATCH] fix: reorder dashboard layout - calendar+claude top, git+savings bottom --- src/app/(dashboard)/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/(dashboard)/page.tsx b/src/app/(dashboard)/page.tsx index 33d4513..e264730 100644 --- a/src/app/(dashboard)/page.tsx +++ b/src/app/(dashboard)/page.tsx @@ -1,4 +1,5 @@ export const dynamic = "force-dynamic"; + import { WeatherWidget } from "@/components/widgets/WeatherWidget"; import { CalendarWidget } from "@/components/widgets/CalendarWidget"; import { DashboardHeader } from "@/components/widgets/DashboardHeader"; @@ -15,12 +16,14 @@ export default function DashboardPage() {
-
- - +
+
+ + +
); }