feat: Implement a new terminal dashboard featuring an analytics panel, sparklines, and foundational UI components and utilities.

This commit is contained in:
2569718930@qq.com
2026-03-08 04:53:38 +08:00
parent d26bce6358
commit d2107cbcbe
13 changed files with 1542 additions and 100 deletions
+15
View File
@@ -0,0 +1,15 @@
import { cn } from "@/lib/utils";
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-zinc-800/50", className)}
{...props}
/>
);
}
export { Skeleton };