From aabe31ba1b242d69c29a59859a17456675db097f Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:51:31 +0000 Subject: [PATCH] Add Wix microsite component: ServiceCard cgen-0beae8d2dc574f52921d616b5d0d4292 --- client/components/wix/ServiceCard.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 client/components/wix/ServiceCard.tsx diff --git a/client/components/wix/ServiceCard.tsx b/client/components/wix/ServiceCard.tsx new file mode 100644 index 00000000..c2aeffe3 --- /dev/null +++ b/client/components/wix/ServiceCard.tsx @@ -0,0 +1,27 @@ +import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; + +export default function ServiceCard({ + name, + summary, + highlights, +}: { + name: string; + summary: string; + highlights: string[]; +}) { + return ( + + + {name} + {summary} + + +
    + {highlights.map((h, i) => ( +
  • {h}
  • + ))} +
+
+
+ ); +}