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