-
-
-
- {icon}
-
-
-
-
{label}
-
{description}
-
- Перейти
-
-
-
+
+
+
-
+
+ {icon}
+
+
+
+
{label}
+
{description}
+
+ Перейти
+
+
-
-
-
+
+
+
)
}
diff --git a/apps/web/src/components/dashboard/dashboard-quick-links.tsx b/apps/web/src/components/dashboard/dashboard-quick-links.tsx
index 8ddc7bc..ae6eb61 100644
--- a/apps/web/src/components/dashboard/dashboard-quick-links.tsx
+++ b/apps/web/src/components/dashboard/dashboard-quick-links.tsx
@@ -2,6 +2,12 @@ import { Gauge, Network, Play, Plus, Share2, Tags } from 'lucide-react'
import type { ReactNode } from 'react'
import { DashboardQuickLinkCard } from '@/components/dashboard/dashboard-quick-link-card'
+import {
+ Frame,
+ FrameDescription,
+ FrameHeader,
+ FrameTitle,
+} from '@/components/reui/frame'
type QuickLink = {
icon: ReactNode
@@ -63,12 +69,16 @@ const LINKS: QuickLink[] = [
export function DashboardQuickLinks() {
return (
-
-
+
+
+ Быстрые действия
+ Частые переходы к настройке и деплою
+
+
{LINKS.map((link) => (
))}
-
+
)
}
diff --git a/apps/web/src/routes/_auth/dashboard.tsx b/apps/web/src/routes/_auth/dashboard.tsx
index b517788..5dfc8b3 100644
--- a/apps/web/src/routes/_auth/dashboard.tsx
+++ b/apps/web/src/routes/_auth/dashboard.tsx
@@ -85,6 +85,8 @@ function DashboardComponent() {
}
/>
+
+
{initialLoading ? (
) : (
@@ -142,14 +144,6 @@ function DashboardComponent() {
)}
-
-
-
-
)
}