@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.
@@ -54,7 +54,7 @@ function TypeBadge({ type }) {
54
54
  EXTENSION: "Extension",
55
55
  THEME: "Theme"
56
56
  };
57
- 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 });
57
+ 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 });
58
58
  }
59
59
  function ProductCard({ product, onClick, href }) {
60
60
  const priceLabel = formatPrice(
@@ -128,7 +128,7 @@ function ProductCard({ product, onClick, href }) {
128
128
  /* @__PURE__ */ jsx(
129
129
  "span",
130
130
  {
131
- className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
131
+ className: `text-xs font-semibold ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
132
132
  children: priceLabel
133
133
  }
134
134
  )
@@ -567,7 +567,7 @@ function FeaturedHeroCard({
567
567
  }
568
568
  )
569
569
  ] }),
570
- /* @__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" }),
570
+ /* @__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" }),
571
571
  /* @__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(
572
572
  "img",
573
573
  {
@@ -625,7 +625,7 @@ function FeaturedHeroCard({
625
625
  /* @__PURE__ */ jsx(
626
626
  "span",
627
627
  {
628
- className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
628
+ className: `text-sm font-bold flex-shrink-0 ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
629
629
  children: priceLabel
630
630
  }
631
631
  )
@@ -924,7 +924,7 @@ function StoreHomePage({
924
924
  }
925
925
  ),
926
926
  /* @__PURE__ */ jsxs("div", { className: "relative max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center", children: [
927
- /* @__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: [
927
+ /* @__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: [
928
928
  /* @__PURE__ */ jsx(
929
929
  "span",
930
930
  {
@@ -1140,7 +1140,7 @@ function StoreHomePage({
1140
1140
  }
1141
1141
  ),
1142
1142
  /* @__PURE__ */ jsxs("div", { className: "relative max-w-2xl mx-auto px-4 py-16 text-center", children: [
1143
- /* @__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: [
1143
+ /* @__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: [
1144
1144
  /* @__PURE__ */ jsx(
1145
1145
  "span",
1146
1146
  {
@@ -2251,7 +2251,7 @@ function StoreProductDetailPage({
2251
2251
  children: [
2252
2252
  /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-2 mb-2", children: [
2253
2253
  /* @__PURE__ */ jsx(StarRating, { rating: review.rating }),
2254
- review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-600 font-medium", children: "Verified" })
2254
+ review.verifiedPurchase && /* @__PURE__ */ jsx("span", { className: "text-xs text-emerald-700 font-medium", children: "Verified" })
2255
2255
  ] }),
2256
2256
  review.title && /* @__PURE__ */ jsx("p", { className: "font-semibold text-sm text-foreground mb-1", children: review.title }),
2257
2257
  review.comment && /* @__PURE__ */ jsx(Markdown, { className: "text-sm text-muted-foreground leading-relaxed", children: review.comment }),
@@ -2285,7 +2285,7 @@ function StoreProductDetailPage({
2285
2285
  /* @__PURE__ */ jsx(
2286
2286
  "div",
2287
2287
  {
2288
- className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-600" : "text-foreground"}`,
2288
+ className: `text-3xl font-extrabold ${priceLabel === "Free" ? "text-emerald-700" : "text-foreground"}`,
2289
2289
  children: priceLabel
2290
2290
  }
2291
2291
  ),