component

TuxCard

A static branded block, or pass to and it becomes a NuxtLink with corner-drop choreography — the card shifts +6/-6px on hover and an arrow fades in at the top-right. The 2px maroon border is load-bearing, so we don't wrap UCard.

static

Without `to`

project · 2026-04-22

Corridor safety review

Static card — no hover motion. Use for summary blocks inside a page.

<tux-card>
  <p class="eyebrow">project · 2026-04-22</p>
  <h3 class="text-xl font-bold">Corridor safety review</h3>
  <p class="mt-2 text-sm text-text-secondary">
    Static card — no hover motion. Use for summary blocks inside a page.
  </p>
</tux-card>

linked

With `to`

Hover to see the corner-drop + arrow. The destination (/tokens) works — click to navigate back.

<tux-card to="/tokens">
  <p class="eyebrow">foundations</p>
  <h3 class="text-xl font-bold">Browse tokens</h3>
  <p class="mt-2 text-sm text-text-secondary">
    Every CSS variable the system exposes.
  </p>
</tux-card>