bake canonical build harness (deterministic /ship for forks) [resume]

This commit is contained in:
vibeasite-bot
2026-08-22 06:29:20 +01:00
parent 757fec41e0
commit fb8c529be5
77 changed files with 6582 additions and 157 deletions
+7
View File
@@ -0,0 +1,7 @@
import { cn } from "@/lib/utils";
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />;
}
export { Skeleton };