// components/ServiceCard.tsx import Link from "next/link"; import type { Service } from "@/lib/services"; export default function ServiceCard({ svc }: { svc: Service }) { return (

{svc.title}

{svc.outcome}

{svc.price}
See details Start now
); }