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

{title} →

{sub}

); }