remove Claude widgets from dashboard
All checks were successful
Build & Deploy Dashboard / deploy (push) Successful in 1m9s
All checks were successful
Build & Deploy Dashboard / deploy (push) Successful in 1m9s
This commit is contained in:
@@ -2,28 +2,14 @@ export const dynamic = "force-dynamic";
|
|||||||
|
|
||||||
import { WeatherWidget } from "@/components/widgets/WeatherWidget";
|
import { WeatherWidget } from "@/components/widgets/WeatherWidget";
|
||||||
import { CalendarWidget } from "@/components/widgets/CalendarWidget";
|
import { CalendarWidget } from "@/components/widgets/CalendarWidget";
|
||||||
import { ClaudeUsageWidget } from "@/components/widgets/ClaudeUsageWidget";
|
|
||||||
import { ClaudeApiWidget } from "@/components/widgets/ClaudeApiWidget";
|
|
||||||
import { DashboardHeader } from "@/components/widgets/DashboardHeader";
|
import { DashboardHeader } from "@/components/widgets/DashboardHeader";
|
||||||
|
|
||||||
export default function DashboardPage() {
|
export default function DashboardPage() {
|
||||||
return (
|
return (
|
||||||
<div className="space-y-5">
|
<div className="space-y-5">
|
||||||
<DashboardHeader />
|
<DashboardHeader />
|
||||||
|
|
||||||
{/* Weather - full width */}
|
|
||||||
<WeatherWidget />
|
<WeatherWidget />
|
||||||
|
|
||||||
{/* Calendar + Claude */}
|
|
||||||
<div className="grid grid-cols-1 lg:grid-cols-3 gap-5">
|
|
||||||
<div className="lg:col-span-2">
|
|
||||||
<CalendarWidget />
|
<CalendarWidget />
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-5">
|
|
||||||
<ClaudeUsageWidget />
|
|
||||||
<ClaudeApiWidget />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user