From 5740cdfc586e4a92ce6c0d157f312ec2d5da0bee Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:52:17 +0000 Subject: [PATCH] Add Wix FAQ page cgen-bcd30cad017849fcb942cb088264db1e --- client/pages/WixFaq.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 client/pages/WixFaq.tsx diff --git a/client/pages/WixFaq.tsx b/client/pages/WixFaq.tsx new file mode 100644 index 00000000..ac1672b7 --- /dev/null +++ b/client/pages/WixFaq.tsx @@ -0,0 +1,16 @@ +import Layout from "@/components/Layout"; +import FAQList from "@/components/wix/FAQ"; +import faqs from "@/data/wix/faqs"; + +export default function WixFaq() { + return ( + +
+
+

Wix FAQ

+ +
+
+
+ ); +}