diff --git a/src/components/SkeletonLoader.tsx b/src/components/SkeletonLoader.tsx index 3da170d..491a362 100644 --- a/src/components/SkeletonLoader.tsx +++ b/src/components/SkeletonLoader.tsx @@ -65,16 +65,36 @@ export function PatternCanvasSkeleton() { export function PatternInfoSkeleton() { return ( -
- -
- {[1, 2, 3, 4].map((i) => ( -
- - +
+ {/* Three column grid matching PatternInfo stats */} +
+ {[1, 2, 3].map((i) => ( +
+ +
))}
+ + {/* Separator */} +
+ + {/* Color swatches row */} +
+ +
+ {[1, 2, 3, 4, 5].map((i) => ( + + ))} +
+
); }