diff --git a/src/blocks/StatsStrip/Component.tsx b/src/blocks/StatsStrip/Component.tsx index 2ff28aa..78acc09 100644 --- a/src/blocks/StatsStrip/Component.tsx +++ b/src/blocks/StatsStrip/Component.tsx @@ -2,14 +2,15 @@ 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) => (
))}
-
+
) }