chore: 以本地为准,上传全部并替换 GitHub

This commit is contained in:
卡若
2026-02-03 11:36:53 +08:00
parent 1219166526
commit b404bf546e
131 changed files with 37618 additions and 3930 deletions

View File

@@ -2,15 +2,15 @@
import Link from "next/link"
import { usePathname } from "next/navigation"
import { LayoutDashboard, Database, Tags, Brain, Monitor } from "lucide-react"
import { LayoutDashboard, Database, Tags, Bot, Package } from "lucide-react"
import { cn } from "@/lib/utils"
const NAV_ITEMS = [
{ href: "/", label: "概览", icon: LayoutDashboard },
{ href: "/data-governance", label: "数据治理", icon: Database },
{ href: "/tag-portrait", label: "标签画像", icon: Tags },
{ href: "/ai-insight", label: "AI洞察", icon: Brain },
{ href: "/monitoring", label: "监控", icon: Monitor },
{ href: "/data-ingestion", label: "数据", icon: Database },
{ href: "/tag-portrait", label: "画像", icon: Tags },
{ href: "/ai-agent", label: "AI", icon: Bot },
{ href: "/data-market", label: "市场", icon: Package },
] as const
export default function BottomNav() {