Article Card
Article 1
Some description.
Article 2
Some description.
Overview
This component is an article link meant for introduction pages.
Details
| Criteria | Component Meets Criteria |
|---|---|
| Has hover styles | Yes |
| Has light and dark mode | Yes |
| Has brand theming | Yes |
Component Props
| Prop Name | Type | Description |
|---|---|---|
| title | string | Title text. |
| description | string | Description text. |
| link | string | A a relative URL to another article. |
Example Code
import ArticleCard from '@site/src/elements/doc/ArticleCard';
<div style={{display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center'}}>
<ArticleCard title={'Article 1'} description={'Some description.'} link={'./'}/>
<ArticleCard title={'Article 2'} description={'Some description.'} link={'./'}/>
</div>