Card

A Warcraft III styled card component with parchment textures and gothic frames.

Standard

Arthas Menethil
Prince of Lordaeron

The former Crown Prince of Lordaeron, who became the Lich King after taking up the cursed blade Frostmourne.

Installation

pnpm dlx shadcn@latest add https://warcraftcn.com/r/card.json

Usage

import {
  Card,
  CardHeader,
  CardTitle,
  CardDescription,
  CardContent,
  CardFooter,
} from "@/components/ui/warcraftcn/card";

<Card>
  <CardHeader>
    <CardTitle>Card Title</CardTitle>
    <CardDescription>Card description</CardDescription>
  </CardHeader>
  <CardContent>
    <p>Card content goes here.</p>
  </CardContent>
  <CardFooter>
    <p>Card footer</p>
  </CardFooter>
</Card>;