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

+ +
+
+
+ ); +}