AeThex-OS/temp-forge-extract/aethex-forge-main/client/data/wix/services.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

59 lines
1.8 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 WixService = {
id: string;
name: string;
summary: string;
highlights: string[];
};
export const wixServices: WixService[] = [
{
id: "studio-sites",
name: "Wix Studio Sites",
summary:
"High-performance marketing sites and landing pages built with Wix Studios responsive canvas, custom interactions, and production-ready SEO.",
highlights: [
"Responsive layout engine with granular breakpoints",
"Animations and micro-interactions",
"SEO foundations (meta, structured data, sitemap)",
"Edge hosting and global CDN",
],
},
{
id: "ecommerce",
name: "Wix eCommerce",
summary:
"Fully managed commerce experiences: catalog, carts, payments, tax & shipping, subscriptions, and analytics with custom design.",
highlights: [
"Catalog, variants, inventory, subscriptions",
"Checkout and payment providers",
"Tax, shipping, and regional settings",
"Post-purchase flows and analytics",
],
},
{
id: "bookings",
name: "Wix Bookings & Events",
summary:
"Scheduling, paid appointments, and events with email/SMS reminders and calendar sync across teams.",
highlights: [
"Calendars, team schedules, buffers, blackout dates",
"Stripe/PayPal payments and coupons",
"Google/Apple calendar sync",
"Email/SMS notifications",
],
},
{
id: "cms",
name: "Wix CMS & Automations",
summary:
"Content collections, dynamic pages, and automations. Build once, scale content and localization without code changes.",
highlights: [
"Collections and dynamic page routing",
"Roles & workflows for editors",
"Webhooks and Zapier integrations",
"Multi-language, redirects, and staging",
],
},
];
export default wixServices;