refactor: update dashboard components for improved layout and functionality
CI / changes (push) Successful in 11s
CI / commitlint (push) Has been skipped
CI / openapi (push) Has been skipped
CI / web (push) Successful in 1m7s
CI / go (push) Has been skipped
CI / bird2 (push) Has been skipped
CI / release (push) Successful in 4m21s

Refactored the DashboardQuickLinks component to utilize the new DashboardQuickLinkCard for better organization and presentation. Enhanced the DashboardComponent to integrate quick links within a DashboardFramePanel, improving the overall user experience. Updated the metric-tile component import path for consistency. Removed unnecessary imports from the separator component to streamline the codebase.
This commit is contained in:
Denozordec
2026-07-09 18:49:55 +07:00
parent 39f1295438
commit 538daea0f1
12 changed files with 401 additions and 37 deletions
+6 -6
View File
@@ -143,13 +143,13 @@ function DashboardComponent() {
</DashboardFramePanel>
</div>
<section className="space-y-3">
<div className="space-y-0.5">
<h2 className="text-sm font-semibold">Быстрые действия</h2>
<p className="text-muted-foreground text-sm">Частые переходы к настройке и деплою</p>
</div>
<DashboardFramePanel
title="Быстрые действия"
description="Частые переходы к настройке и деплою"
contentClassName="p-4"
>
<DashboardQuickLinks />
</section>
</DashboardFramePanel>
</div>
)
}