From 7645168b4c5c85572e5485254cf450b86a14e46c Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:52:05 +0000 Subject: [PATCH] Add Wix main page cgen-5c49b61888a642bea9c841a69a550ed2 --- client/pages/Wix.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 client/pages/Wix.tsx diff --git a/client/pages/Wix.tsx b/client/pages/Wix.tsx new file mode 100644 index 00000000..48a52b17 --- /dev/null +++ b/client/pages/Wix.tsx @@ -0,0 +1,40 @@ +import Layout from "@/components/Layout"; +import WixHero from "@/components/wix/WixHero"; +import ServiceCard from "@/components/wix/ServiceCard"; +import PricingTable from "@/components/wix/PricingTable"; +import FAQList from "@/components/wix/FAQ"; +import LeadForm from "@/components/wix/LeadForm"; +import services from "@/data/wix/services"; +import pricing from "@/data/wix/pricing"; +import faqs from "@/data/wix/faqs"; + +export default function Wix() { + return ( + +
+ + +
+

What we build

+
+ {services.map((s) => ( + + ))} +
+
+ +
+

Pricing

+ +
+ + + +
+

FAQ

+ +
+
+
+ ); +}