Bloques
DashboardGitHub
DashboardGitHub

Get started

QuickstartIntroduction

Writing content

MDX basicsMarkdown reference

Configuration

docs.json overviewNavigationThemeNavbarInternationalizationSchema reference

API reference

API reference overviewSet up an API reference

Publishing

Connect GitHubDeploymentsCustom domainLLM endpointsMCP server

Team

OrganizationsMembers and roles

Card

A bordered tile with title, description, icon, and link for navigating to another page.

Use a card as a navigational tile to another page. Wrap multiple cards in <Columns> to lay them out in a responsive grid.

Quickstart

Get from zero to a live docs site in under five minutes.

Go to content
<Card
  title="Quickstart"
  href="/quickstart"
  icon="rocket"
  description="Get from zero to a live docs site in under five minutes."
/>

Props

PropTypeDefault
titlestring—
hrefstring (absolute URL or path starting with /)—
descriptionstring—
iconIcon name"default"
iconColor"gray" | "green" | "yellow" | "red" | "orange" | "blue""gray"
ctastring (link label when href is set)"Go to content"

Variants

With icon

Editor overview

Tour the editor layout and the save-and-publish flow.

Go to content
<Card
  title="Editor overview"
  href="/editor/overview"
  icon="note"
  description="Tour the editor layout and the save-and-publish flow."
/>

With icon color

Deployments

Every push to the default branch ships.

Go to content
<Card
  title="Deployments"
  href="/publishing/deployments"
  icon="rocket"
  iconColor="blue"
  description="Every push to the default branch ships."
/>

Custom CTA

Connect GitHub

Install the GitHub App and link a repo.

Set it up
<Card
  title="Connect GitHub"
  href="/publishing/connect-github"
  icon="branch"
  cta="Set it up"
  description="Install the GitHub App and link a repo."
/>

Card group

Wrap two or more cards in <Columns> to lay them out in a responsive grid. Columns collapse on narrow screens.

Editor overview

Go to content

Components

Go to content
<Columns cols="2">
  <Card title="Editor overview" href="/editor/overview" icon="pencil" />
  <Card title="Components" href="/editor/components" icon="component" />
</Columns>

Next

Icon

Available icon names and colors.

Go to content

Columns

Multi-column layout for side-by-side blocks.

Go to content

On this page

Props
Variants
With icon
With icon color
Custom CTA
Card group
Next