@neowhale/storefront 0.2.20 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react/index.cjs +48 -27
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +48 -27
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -2594,35 +2594,56 @@ function GallerySection({ section, theme }) {
|
|
|
2594
2594
|
) }, i)) }) });
|
|
2595
2595
|
}
|
|
2596
2596
|
function CTASection({ section, theme, tracking }) {
|
|
2597
|
-
const { buttons } = section.content;
|
|
2597
|
+
const { title, subtitle, buttons } = section.content;
|
|
2598
2598
|
if (!buttons || buttons.length === 0) return null;
|
|
2599
|
-
return /* @__PURE__ */
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2599
|
+
return /* @__PURE__ */ jsxs("div", { style: { padding: "2rem 1.5rem", maxWidth: 480, margin: "0 auto", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
|
|
2600
|
+
title && /* @__PURE__ */ jsx("h2", { style: {
|
|
2601
|
+
fontSize: "clamp(1.25rem, 4vw, 1.5rem)",
|
|
2602
|
+
fontWeight: 300,
|
|
2603
|
+
fontFamily: theme.fontDisplay || "inherit",
|
|
2604
|
+
margin: "0 0 0.25rem",
|
|
2605
|
+
lineHeight: 1.2,
|
|
2606
|
+
letterSpacing: "-0.02em",
|
|
2607
|
+
color: theme.fg,
|
|
2608
|
+
textAlign: "center"
|
|
2609
|
+
}, children: title }),
|
|
2610
|
+
subtitle && /* @__PURE__ */ jsx("p", { style: {
|
|
2611
|
+
fontSize: "0.8rem",
|
|
2612
|
+
color: theme.accent,
|
|
2613
|
+
margin: "0 0 0.75rem",
|
|
2614
|
+
lineHeight: 1.6,
|
|
2615
|
+
textTransform: "uppercase",
|
|
2616
|
+
letterSpacing: "0.15em",
|
|
2617
|
+
textAlign: "center"
|
|
2618
|
+
}, children: subtitle }),
|
|
2619
|
+
buttons.map((btn, i) => {
|
|
2620
|
+
const isPrimary = btn.style !== "outline";
|
|
2621
|
+
return /* @__PURE__ */ jsx(
|
|
2622
|
+
"a",
|
|
2623
|
+
{
|
|
2624
|
+
href: btn.url,
|
|
2625
|
+
onClick: () => trackClick(tracking, btn.text, btn.url, i),
|
|
2626
|
+
style: {
|
|
2627
|
+
display: "block",
|
|
2628
|
+
width: "100%",
|
|
2629
|
+
padding: "0.875rem",
|
|
2630
|
+
background: isPrimary ? theme.fg : "transparent",
|
|
2631
|
+
color: isPrimary ? theme.bg : theme.fg,
|
|
2632
|
+
border: isPrimary ? "none" : `1px solid ${theme.fg}20`,
|
|
2633
|
+
fontSize: "0.85rem",
|
|
2634
|
+
fontWeight: 500,
|
|
2635
|
+
textAlign: "center",
|
|
2636
|
+
textDecoration: "none",
|
|
2637
|
+
boxSizing: "border-box",
|
|
2638
|
+
letterSpacing: "0.08em",
|
|
2639
|
+
textTransform: "uppercase"
|
|
2640
|
+
},
|
|
2641
|
+
children: btn.text
|
|
2620
2642
|
},
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
}) });
|
|
2643
|
+
i
|
|
2644
|
+
);
|
|
2645
|
+
})
|
|
2646
|
+
] });
|
|
2626
2647
|
}
|
|
2627
2648
|
function StatsSection({ section, theme }) {
|
|
2628
2649
|
const { stats } = section.content;
|