@burdenoff/website-sdk 2026.724.4 → 2026.724.6

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
@@ -6689,7 +6689,7 @@ function TypeBadge({ type }) {
6689
6689
  EXTENSION: "Extension",
6690
6690
  THEME: "Theme"
6691
6691
  };
6692
- return /* @__PURE__ */ jsx("span", { className: "inline-block text-xs px-2 py-0.5 rounded-full bg-primary/10 text-primary font-medium", children: labels[type] ?? type });
6692
+ return /* @__PURE__ */ jsx("span", { className: "inline-block text-xs px-2 py-0.5 rounded-full bg-primary/10 text-foreground font-medium", children: labels[type] ?? type });
6693
6693
  }
6694
6694
  function ProductCard({ product, onClick, href }) {
6695
6695
  const priceLabel = formatPrice2(
@@ -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-600" : "text-foreground"}`,
6766
+ className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
6767
6767
  children: priceLabel
6768
6768
  }
6769
6769
  )
@@ -6957,7 +6957,7 @@ function FeaturedHeroCard({
6957
6957
  }
6958
6958
  )
6959
6959
  ] }),
6960
- /* @__PURE__ */ jsx("span", { className: "absolute top-3 left-3 text-xs font-semibold px-2.5 py-1 rounded-full bg-primary text-primary-foreground shadow-sm", children: "Featured" }),
6960
+ /* @__PURE__ */ jsx("span", { className: "absolute top-3 left-3 text-xs font-semibold px-2.5 py-1 rounded-full border border-primary/30 bg-primary/10 text-foreground shadow-sm", children: "Featured" }),
6961
6961
  /* @__PURE__ */ jsx("div", { className: "absolute bottom-4 left-4 w-14 h-14 rounded-xl shadow-lg overflow-hidden border-2 border-background", children: product.icon ? /* @__PURE__ */ jsx(
6962
6962
  "img",
6963
6963
  {
@@ -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-600" : "text-foreground"}`,
7018
+ className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
7019
7019
  children: priceLabel
7020
7020
  }
7021
7021
  )
@@ -7314,7 +7314,7 @@ function StoreHomePage({
7314
7314
  }
7315
7315
  ),
7316
7316
  /* @__PURE__ */ jsxs("div", { className: "relative max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center", children: [
7317
- /* @__PURE__ */ jsxs("div", { className: "inline-flex items-center gap-2 px-3 py-1 rounded-full border border-primary/30 bg-primary/10 text-xs font-semibold text-primary mb-5", children: [
7317
+ /* @__PURE__ */ jsxs("div", { className: "inline-flex items-center gap-2 px-3 py-1 rounded-full border border-primary/30 bg-primary/10 text-xs font-semibold text-foreground mb-5", children: [
7318
7318
  /* @__PURE__ */ jsx(
7319
7319
  "span",
7320
7320
  {
@@ -7530,7 +7530,7 @@ function StoreHomePage({
7530
7530
  }
7531
7531
  ),
7532
7532
  /* @__PURE__ */ jsxs("div", { className: "relative max-w-2xl mx-auto px-4 py-16 text-center", children: [
7533
- /* @__PURE__ */ jsxs("div", { className: "inline-flex items-center gap-2 px-3 py-1 rounded-full border border-primary/30 bg-primary/10 text-xs font-semibold text-primary mb-5", children: [
7533
+ /* @__PURE__ */ jsxs("div", { className: "inline-flex items-center gap-2 px-3 py-1 rounded-full border border-primary/30 bg-primary/10 text-xs font-semibold text-foreground mb-5", children: [
7534
7534
  /* @__PURE__ */ jsx(
7535
7535
  "span",
7536
7536
  {
@@ -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-600 font-medium", children: "Verified" })
8542
+ review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-700 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-600" : "text-foreground"}`,
8576
+ className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
8577
8577
  children: priceLabel
8578
8578
  }
8579
8579
  ),