import Link from "next/link"; export default function LinkCard(props: { link: string; title: string; sub: string; }) { const { link, title, sub } = props; return ( {title} → {sub} ); }
{sub}