import Link from 'next/link'; export function DocsCard({ title, subtitle, children, link, }: React.PropsWithChildren<{ title: string; subtitle?: string | null; link: { url: string; label?: string }; }>) { return (

{title}

{subtitle && (

)} {children &&
{children}
}
); }