From 368d50c10ad7d927ce9528bfbb75b849af13bc65 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:51:07 +0000 Subject: [PATCH] Add Wix microsite data: FAQs cgen-1d0b08e3fcc14a00a12c0f78dff7d1c9 --- client/data/wix/faqs.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 client/data/wix/faqs.ts diff --git a/client/data/wix/faqs.ts b/client/data/wix/faqs.ts new file mode 100644 index 00000000..df08e8a6 --- /dev/null +++ b/client/data/wix/faqs.ts @@ -0,0 +1,26 @@ +export type FaqItem = { q: string; a: string }; + +export const faqs: FaqItem[] = [ + { + q: "Why Wix Studio?", + a: "It ships a pro-grade responsive canvas, modern performance defaults, and a CMS that lets non-devs update content safely.", + }, + { + q: "Can we migrate from WordPress or Webflow?", + a: "Yes. We audit IA/SEO, map redirects, migrate content to collections, and rebuild the front-end with Studio.", + }, + { + q: "Who owns the site?", + a: "You do. We transfer the site to your Wix account and provide admin/editor roles as needed.", + }, + { + q: "What about custom code?", + a: "When needed, we extend with Velo, webhooks, or headless APIs — while keeping most content editable in the CMS.", + }, + { + q: "Do you offer support?", + a: "Yes — training, docs, and optional retainers for continuous improvements and experiments.", + }, +]; + +export default faqs;