aethex-forge/client/data/wix/services.ts
Builder.io 6a22df18b1 Add Wix microsite data: services
cgen-178af16b60d5446081b164497f7b913a
2025-10-19 05:50:54 +00: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;