Cards
Highlight content with visual cards
Basic card
<Card title="Getting Started">
A simple card with a title and content.
</Card>
Card with icon
<Card title="Documentation" icon="book">
Add an icon for visual emphasis.
</Card>
Card with link
<Card title="Quickstart Guide" icon="play" href="/quickstart">
Cards can link to other pages.
</Card>
Card group
Use CardGroup to arrange cards in a grid:
<CardGroup cols={2}>
<Card title="Docs" icon="book">Documentation</Card>
<Card title="API" icon="code">API Reference</Card>
</CardGroup>
Properties
stringrequiredThe title displayed at the top of the card.
stringFont Awesome icon name (e.g., "book", "code", "rocket").
stringURL the card links to.