// components/CtaPanel.tsx import Link from "next/link"; export default function CtaPanel({ title, body, href }: { title: string; body?: string; href: string }) { return ( ); }