@burdenoff/website-sdk 2026.724.3 → 2026.724.5

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.
@@ -80,7 +80,7 @@ function TypeBadge({ type }) {
80
80
  EXTENSION: "Extension",
81
81
  THEME: "Theme"
82
82
  };
83
- return /* @__PURE__ */ jsxRuntime.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 });
83
+ return /* @__PURE__ */ jsxRuntime.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 });
84
84
  }
85
85
  function ProductCard({ product, onClick, href }) {
86
86
  const priceLabel = formatPrice(
@@ -154,7 +154,7 @@ function ProductCard({ product, onClick, href }) {
154
154
  /* @__PURE__ */ jsxRuntime.jsx(
155
155
  "span",
156
156
  {
157
- className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
157
+ className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
158
158
  children: priceLabel
159
159
  }
160
160
  )
@@ -593,7 +593,7 @@ function FeaturedHeroCard({
593
593
  }
594
594
  )
595
595
  ] }),
596
- /* @__PURE__ */ jsxRuntime.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" }),
596
+ /* @__PURE__ */ jsxRuntime.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" }),
597
597
  /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.jsx(
598
598
  "img",
599
599
  {
@@ -651,7 +651,7 @@ function FeaturedHeroCard({
651
651
  /* @__PURE__ */ jsxRuntime.jsx(
652
652
  "span",
653
653
  {
654
- className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
654
+ className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
655
655
  children: priceLabel
656
656
  }
657
657
  )
@@ -950,7 +950,7 @@ function StoreHomePage({
950
950
  }
951
951
  ),
952
952
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center", children: [
953
- /* @__PURE__ */ jsxRuntime.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: [
953
+ /* @__PURE__ */ jsxRuntime.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: [
954
954
  /* @__PURE__ */ jsxRuntime.jsx(
955
955
  "span",
956
956
  {
@@ -1166,7 +1166,7 @@ function StoreHomePage({
1166
1166
  }
1167
1167
  ),
1168
1168
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative max-w-2xl mx-auto px-4 py-16 text-center", children: [
1169
- /* @__PURE__ */ jsxRuntime.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: [
1169
+ /* @__PURE__ */ jsxRuntime.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: [
1170
1170
  /* @__PURE__ */ jsxRuntime.jsx(
1171
1171
  "span",
1172
1172
  {
@@ -2277,7 +2277,7 @@ function StoreProductDetailPage({
2277
2277
  children: [
2278
2278
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between gap-2 mb-2", children: [
2279
2279
  /* @__PURE__ */ jsxRuntime.jsx(StarRating, { rating: review.rating }),
2280
- review.verifiedPurchase && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-xs text-emerald-600 font-medium", children: "Verified" })
2280
+ review.verifiedPurchase && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-xs text-emerald-700 font-medium", children: "Verified" })
2281
2281
  ] }),
2282
2282
  review.title && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "font-semibold text-sm text-foreground mb-1", children: review.title }),
2283
2283
  review.comment && /* @__PURE__ */ jsxRuntime.jsx(Markdown, { className: "text-sm text-muted-foreground leading-relaxed", children: review.comment }),
@@ -2311,7 +2311,7 @@ function StoreProductDetailPage({
2311
2311
  /* @__PURE__ */ jsxRuntime.jsx(
2312
2312
  "div",
2313
2313
  {
2314
- className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
2314
+ className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
2315
2315
  children: priceLabel
2316
2316
  }
2317
2317
  ),