@burdenoff/website-sdk 2026.724.2 → 2026.724.3

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/index.mjs CHANGED
@@ -6763,7 +6763,7 @@ function ProductCard({ product, onClick, href }) {
6763
6763
  /* @__PURE__ */ jsx(
6764
6764
  "span",
6765
6765
  {
6766
- className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-500" : "text-foreground"}`,
6766
+ className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
6767
6767
  children: priceLabel
6768
6768
  }
6769
6769
  )
@@ -7015,7 +7015,7 @@ function FeaturedHeroCard({
7015
7015
  /* @__PURE__ */ jsx(
7016
7016
  "span",
7017
7017
  {
7018
- className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-500" : "text-foreground"}`,
7018
+ className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
7019
7019
  children: priceLabel
7020
7020
  }
7021
7021
  )
@@ -8539,7 +8539,7 @@ function StoreProductDetailPage({
8539
8539
  children: [
8540
8540
  /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-2 mb-2", children: [
8541
8541
  /* @__PURE__ */ jsx(StarRating, { rating: review.rating }),
8542
- review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-500 font-medium", children: "Verified" })
8542
+ review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-600 font-medium", children: "Verified" })
8543
8543
  ] }),
8544
8544
  review.title && /* @__PURE__ */ jsx("p", { className: "font-semibold text-sm text-foreground mb-1", children: review.title }),
8545
8545
  review.comment && /* @__PURE__ */ jsx(Markdown, { className: "text-sm text-muted-foreground leading-relaxed", children: review.comment }),
@@ -8573,7 +8573,7 @@ function StoreProductDetailPage({
8573
8573
  /* @__PURE__ */ jsx(
8574
8574
  "div",
8575
8575
  {
8576
- className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-500" : "text-foreground"}`,
8576
+ className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
8577
8577
  children: priceLabel
8578
8578
  }
8579
8579
  ),