Skip to content
BlueSkyGitHub

Link Card

To display links to different pages prominently, use the <LinkCard> component.

import { LinkCard } from 'starlight-theme-nova/components'

<LinkCard title="Authoring Markdown" href="/guides/authoring-content/" />

<LinkCard
  title="Internationalization"
  href="/guides/i18n/"
  description="Configure Starlight to support multiple languages."
/>

The <LinkCard> component accepts the following props, as well as all other <a> element attributes:

required
type: string

The title of the link card to display.

required
type: string

The URL to link to when the card is interacted with.

type: string

An optional description to display below the title.