aethex-forge/client/data/wix/pricing.ts
2025-10-19 06:00:42 +00:00

55 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;