Add Wix microsite data: pricing tiers

cgen-7843926351844124b92bdb747172ff1f
This commit is contained in:
Builder.io 2025-10-19 05:51:02 +00:00
parent 6a22df18b1
commit a95552a227

View file

@ -0,0 +1,54 @@
export type PricingTier = {
id: string;
name: string;
price: string; // display only (project-based)
description: string;
features: string[];
cta: string;
};
export const pricing: PricingTier[] = [
{
id: "starter",
name: "Starter",
price: "From $2,500",
description: "Single-page or small brochure site with strong SEO and fast turnaround.",
features: [
"13 pages",
"Wix Studio setup and theme",
"Core SEO and analytics",
"Launch support",
],
cta: "Start a project",
},
{
id: "growth",
name: "Growth",
price: "From $7,500",
description:
"Multi-page site with CMS, blog, or bookings. Ideal for growing teams who need control.",
features: [
"510 pages",
"CMS collections & dynamic pages",
"Performance & accessibility pass",
"Onboarding & training",
],
cta: "Book a consult",
},
{
id: "commerce",
name: "Commerce",
price: "From $15,000",
description:
"Full eCommerce stack with custom design, subscriptions, and automations.",
features: [
"Product catalog & variants",
"Payment & fulfillment",
"Subscriptions & memberships",
"Advanced analytics & CRM",
],
cta: "Talk to sales",
},
];
export default pricing;