Cards
Create linked feature grids and navigation panels with Card and Columns components. Supports icons, descriptions, and click-through links.
Cards are visual containers for linking to other pages, highlighting features, or grouping related content.
Basic card
<Card title="Getting Started">
A simple card with a title and content.
</Card>
Card with icon
<Card title="Documentation" icon="book">
Add a Font Awesome icon for visual emphasis.
</Card>
Card with link
<Card title="Quickstart Guide" icon="play" href="/quickstart">
Cards can link to other pages.
</Card>
Card groups with Columns
Use Columns to arrange cards in a responsive grid:
<Columns cols={2}>
<Card title="MCP Overview" icon="plug" href="/mcp/overview">
How Matrix uses MCP for its tool surface.
</Card>
<Card title="Agent Manifests" icon="file-code" href="/mcp/agent-manifests">
The manifest schema and field reference.
</Card>
</Columns>
The cols prop accepts 2, 3, or 4 to control the grid layout.
Properties
stringrequiredThe title displayed at the top of the card.
stringFont Awesome icon name (e.g., "book", "code", "rocket", "plug").
stringURL the card links to. Makes the entire card clickable.
