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

This commit is contained in:
vibeasite-bot
2026-08-22 06:31:15 +01:00
parent c577aae944
commit a4c532a9e3
77 changed files with 6564 additions and 241 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 };