import Link from "next/link"; export default function HighlightCard({ slug, highlight }) { return (
{highlight.image ? (
) : (
)}

{highlight?.title}

{highlight?.description}

Learn More
); }