AeThex-OS/temp-forge-extract/aethex-forge-main/client/data/wix/pricing.ts
MrPiglr b3c308b2c8 Add functional marketplace modules, bottom nav bar, root terminal, arcade games
- ModuleManager: Central tracking for installed marketplace modules
- DataAnalyzerWidget: Real-time CPU/RAM/Battery/Storage widget (unlocked by Data Analyzer module)
- BottomNavBar: Navigation bar for Projects/Chat/Marketplace/Settings
- RootShell: Real root command execution utility
- TerminalActivity: Full root shell with neofetch, sysinfo, real Linux commands
- Terminal Pro module: Adds aliases (ll, la, h), command history
- ArcadeActivity + SnakeGame: Pixel Arcade module unlocks retro games
- fade_in/fade_out animations for smooth transitions
2026-02-18 22:03:50 -07:00

55 lines
1.3 KiB
TypeScript
Raw Permalink 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;