@burdenoff/website-sdk 2026.514.9 → 2026.516.2

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
@@ -1614,6 +1614,22 @@ function PricingSection(props) {
1614
1614
  const plans = allPlans.filter(
1615
1615
  (plan) => billingCycle === "monthly" ? plan.duration === "monthly" : plan.duration === "yearly"
1616
1616
  );
1617
+ if (!plans.some((p) => p.tier === "enterprise") && props.fallbackFeatures?.enterprise?.length) {
1618
+ plans.push({
1619
+ id: "enterprise-contact",
1620
+ name: "Enterprise",
1621
+ description: "For organizations that need more",
1622
+ price: "Custom",
1623
+ priceRaw: Infinity,
1624
+ interval: "",
1625
+ duration: billingCycle,
1626
+ features: [...props.fallbackFeatures.enterprise],
1627
+ popular: false,
1628
+ ctaText: "Contact Sales",
1629
+ ctaLink: props.contactUrl || "/contact",
1630
+ tier: "enterprise"
1631
+ });
1632
+ }
1617
1633
  if (loading) {
1618
1634
  return /* @__PURE__ */ jsx("section", { id, className: `py-12 sm:py-16 md:py-20 ${className}`, children: /* @__PURE__ */ jsxs("div", { className: "container mx-auto px-4 sm:px-6", children: [
1619
1635
  /* @__PURE__ */ jsxs("div", { className: "text-center mb-8 sm:mb-12", children: [
@@ -1676,7 +1692,7 @@ function PricingSection(props) {
1676
1692
  /* @__PURE__ */ jsx("h3", { className: "text-xl sm:text-2xl font-bold mb-2", children: plan.name }),
1677
1693
  /* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-sm", children: plan.description })
1678
1694
  ] }),
1679
- /* @__PURE__ */ jsx("div", { className: "text-center mb-8", children: /* @__PURE__ */ jsxs("div", { className: "flex items-baseline justify-center gap-1", children: [
1695
+ /* @__PURE__ */ jsx("div", { className: "text-center mb-8", children: plan.price === "Custom" ? /* @__PURE__ */ jsx("span", { className: "text-3xl sm:text-4xl font-bold", children: "Custom" }) : /* @__PURE__ */ jsxs("div", { className: "flex items-baseline justify-center gap-1", children: [
1680
1696
  /* @__PURE__ */ jsx("span", { className: "text-4xl sm:text-5xl font-bold", children: plan.price }),
1681
1697
  /* @__PURE__ */ jsx("span", { className: "text-muted-foreground text-lg", children: plan.interval })
1682
1698
  ] }) }),