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}
+
+
+ ))} +
+ ); +}