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