From ab3fb3a76da25109fdeddd0ac3a878c1c672e6ea Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:51:42 +0000 Subject: [PATCH] Add Wix microsite component: FAQ cgen-50002704e34146d783fbb81a8f11ecf6 --- client/components/wix/FAQ.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 client/components/wix/FAQ.tsx diff --git a/client/components/wix/FAQ.tsx b/client/components/wix/FAQ.tsx new file mode 100644 index 00000000..78068d21 --- /dev/null +++ b/client/components/wix/FAQ.tsx @@ -0,0 +1,17 @@ +import { Card, CardContent } from "@/components/ui/card"; +import type { FaqItem } from "@/data/wix/faqs"; + +export default function FAQList({ items }: { items: FaqItem[] }) { + return ( +
+ {items.map((f, i) => ( + + +
{f.q}
+
{f.a}
+
+
+ ))} +
+ ); +}