From 6a22df18b1b8ef483d10d12f05f8942fd12531f0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:50:54 +0000 Subject: [PATCH] Add Wix microsite data: services cgen-178af16b60d5446081b164497f7b913a --- client/data/wix/services.ts | 59 +++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 client/data/wix/services.ts diff --git a/client/data/wix/services.ts b/client/data/wix/services.ts new file mode 100644 index 00000000..e3b73775 --- /dev/null +++ b/client/data/wix/services.ts @@ -0,0 +1,59 @@ +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 Studio’s 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;