@xenterprises/nuxt-x-marketing 1.4.12 → 1.4.13
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/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
30
30
|
section and its sample product data were dropped with them. Every other section of the
|
|
31
31
|
demo page is unchanged.
|
|
32
32
|
|
|
33
|
+
## [1.4.13] - 2026-09-06
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Pricing Enterprise CTA default label is **Get a quote** (was Contact Sales); same fallback when Enterprise omits `button.label`.
|
|
38
|
+
|
|
33
39
|
## [1.4.12] - 2026-09-06
|
|
34
40
|
|
|
35
41
|
### Changed
|
|
@@ -60,7 +60,7 @@ const props = defineProps({
|
|
|
60
60
|
id: "enterprise",
|
|
61
61
|
name: "Enterprise",
|
|
62
62
|
price: "$99/mo",
|
|
63
|
-
button: { label: "
|
|
63
|
+
button: { label: "Get a quote" },
|
|
64
64
|
},
|
|
65
65
|
],
|
|
66
66
|
},
|
|
@@ -140,7 +140,11 @@ const mappedTiers = computed(() => {
|
|
|
140
140
|
highlight: plan.highlighted,
|
|
141
141
|
button: plan.button
|
|
142
142
|
? {
|
|
143
|
-
label:
|
|
143
|
+
label:
|
|
144
|
+
plan.button.label
|
|
145
|
+
|| (/enterprise/i.test(plan.name || "")
|
|
146
|
+
? "Get a quote"
|
|
147
|
+
: "Get Started"),
|
|
144
148
|
color: plan.highlighted ? "primary" : "neutral",
|
|
145
149
|
variant: plan.highlighted ? "solid" : "outline",
|
|
146
150
|
onClick: () => emit("select", plan),
|
|
@@ -113,7 +113,7 @@ const props = defineProps({
|
|
|
113
113
|
"Custom integrations",
|
|
114
114
|
"SLA guarantee",
|
|
115
115
|
],
|
|
116
|
-
button: { label: "
|
|
116
|
+
button: { label: "Get a quote" },
|
|
117
117
|
},
|
|
118
118
|
],
|
|
119
119
|
},
|
|
@@ -216,7 +216,11 @@ const mappedPlans = computed(() => {
|
|
|
216
216
|
scale: shouldScale,
|
|
217
217
|
badge: isHighlighted ? "Most Popular" : undefined,
|
|
218
218
|
button: {
|
|
219
|
-
label:
|
|
219
|
+
label:
|
|
220
|
+
plan.button?.label
|
|
221
|
+
|| (/enterprise/i.test(plan.name || "")
|
|
222
|
+
? "Get a quote"
|
|
223
|
+
: "Get Started"),
|
|
220
224
|
onClick: () => emit("select", plan),
|
|
221
225
|
},
|
|
222
226
|
};
|
package/app/pages/index.vue
CHANGED
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
<div class="mt-8 flex flex-wrap justify-center gap-4">
|
|
77
77
|
<UButton size="xl" color="white"> Start Free Trial </UButton>
|
|
78
78
|
<UButton size="xl" variant="outline" color="white">
|
|
79
|
-
|
|
79
|
+
Get a quote
|
|
80
80
|
</UButton>
|
|
81
81
|
</div>
|
|
82
82
|
<div class="mt-6 flex flex-wrap justify-center gap-4">
|
|
@@ -204,7 +204,7 @@ const pricingPlans = [
|
|
|
204
204
|
"Custom integrations",
|
|
205
205
|
"SLA guarantee",
|
|
206
206
|
],
|
|
207
|
-
cta: "
|
|
207
|
+
cta: "Get a quote",
|
|
208
208
|
},
|
|
209
209
|
];
|
|
210
210
|
</script>
|