From 97422f8bd720e493d9d2db6e614b46b3bc292d5e Mon Sep 17 00:00:00 2001 From: Mackie Date: Fri, 5 Jun 2026 16:40:40 +0800 Subject: [PATCH] wrapper --- src/blocks/StatsStrip/Component.tsx | 36 +++++++++++------------------ 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/src/blocks/StatsStrip/Component.tsx b/src/blocks/StatsStrip/Component.tsx index 78acc09..c39d6a6 100644 --- a/src/blocks/StatsStrip/Component.tsx +++ b/src/blocks/StatsStrip/Component.tsx @@ -2,30 +2,20 @@ export function StatsStripBlock({ stats }: StatsStripProps) { if (!Array.isArray(stats) || stats.length === 0) return null return ( - // Wrap in a container to match the max-width of your other blocks
-
- {stats.map((stat, i) => ( -
-

- {stat.value} -

-

- {stat.label} -

-
- ))} +
+
+ {stats.map((stat, i) => ( +
+

+ {stat.value} +

+

+ {stat.label} +

+
+ ))} +
)