Interface LinkCardProperty

Interface that defines property for LinkCard component

<LinkCard title="Test Article" description="Test entry for the website." link="/blog/test" image-path="blog-cover-image.jpg" />
interface LinkCardProperty {
    description: string;
    imagePath?: string;
    link: string;
    title: string;
}

Properties

description: string

description of link

imagePath?: string

optional path to image to display with

link: string

link itself

title: string

title of link