From 5f0ad6b8d16ce278e44610231f50762497499a5a Mon Sep 17 00:00:00 2001 From: Cosmo Date: Thu, 16 Apr 2026 09:54:17 +0000 Subject: [PATCH] remove Claude widgets from dashboard --- src/app/(dashboard)/page.tsx | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/app/(dashboard)/page.tsx b/src/app/(dashboard)/page.tsx index f6a9ee6..cc9a9bb 100644 --- a/src/app/(dashboard)/page.tsx +++ b/src/app/(dashboard)/page.tsx @@ -2,28 +2,14 @@ export const dynamic = "force-dynamic"; import { WeatherWidget } from "@/components/widgets/WeatherWidget"; import { CalendarWidget } from "@/components/widgets/CalendarWidget"; -import { ClaudeUsageWidget } from "@/components/widgets/ClaudeUsageWidget"; -import { ClaudeApiWidget } from "@/components/widgets/ClaudeApiWidget"; import { DashboardHeader } from "@/components/widgets/DashboardHeader"; export default function DashboardPage() { return (
- - {/* Weather - full width */} - - {/* Calendar + Claude */} -
-
- -
-
- - -
-
+
); }