ShellUI Logo
ShellUI

LinkCard

Card-style navigation link — new in v0.3.0-alpha.2.

LinkCard is new in v0.3.0-alpha.2. It renders a styled <a> tag that looks like a Card — perfect for "see also" grids, related docs sections, or feature link lists.

Installation

shellui add link-card

Usage

Basic

<LinkCard Href="/docs/v0.3.0-alpha.2/installation" Title="Installation">
    Get started in minutes with the CLI or NuGet.
</LinkCard>
<div class="grid grid-cols-1 gap-3 sm:grid-cols-2">
    <LinkCard Href="/docs/v0.3.0-alpha.2/quickstart" Title="Quick Start">
        Build your first ShellUI component in under 5 minutes.
    </LinkCard>
    <LinkCard Href="/docs/v0.3.0-alpha.2/components" Title="Components">
        Browse all 80+ available components.
    </LinkCard>
    <LinkCard Href="/docs/v0.3.0-alpha.2/theming" Title="Theming">
        Customise colors, radius, and shadows with CSS variables.
    </LinkCard>
    <LinkCard Href="/docs/v0.3.0-alpha.2/contributing" Title="Contributing">
        Help improve ShellUI by contributing components or fixes.
    </LinkCard>
</div>

Open in new tab

<LinkCard
    Href="https://github.com/shellui-dev/shellui"
    Title="GitHub Repository"
    OpenInNewTab="true">
    View the source code, open issues, or star the project.
</LinkCard>

Custom styling

<LinkCard
    Href="/docs/components/advanced/sonner"
    Title="Sonner — Toast Notifications"
    Class="border-primary/30 hover:border-primary/60">
    Modern shadcn-style stacked toasts.
</LinkCard>

API Reference

ParameterTypeDefaultDescription
Hrefstring?nullNavigation destination
Titlestring?nullBold heading inside the card
OpenInNewTabboolfalseAdds target="_blank" rel="noopener noreferrer"
ChildContentRenderFragment?nullDescription text below the title
Classstring?nullAdditional CSS classes

On this page