Cards
Highlight features and link to other pages
Basic card
<Card title="Authentication">
Every API request requires a Bearer token in the `Authorization` header.
</Card>
With icon
<Card title="SDKs" icon="box">
Official client libraries for Node.js, Python, Go, and Ruby.
</Card>
With link
<Card title="Quickstart" icon="play" href="/quickstart">
Make your first API call in under 5 minutes.
</Card>
Grid layout
Use Columns to arrange cards side by side:
<Columns cols={2}>
<Card title="Payments" icon="credit-card">
Charge cards, send invoices, manage refunds.
</Card>
<Card title="Customers" icon="users">
Store payment methods and billing details.
</Card>
</Columns>
Properties
stringrequiredCard heading text.
stringFont Awesome icon name (e.g., book, code, rocket).
stringURL the card links to. Can be a relative path or external URL.