11:31 AM
Back to Components

Card

Displays a card with header, content, and footer.

Preview
Card Variants
Default Primary Card Header Title
Windows 95 sold for $99.99 as an upgrade or $179.99 for the full version.
Default Secondary Card Header Title
Windows 95 was available on either floppy disks or a CD-ROM. The floppy version shipped with 13 disks.
Default Tertiary Card Header Title
The minimum system requirements called for a 386DX processor, 4MB of RAM, and a 120MB hard drive.
Card with white background
The minimum system requirements called for a 386DX processor, 4MB of RAM, and a 120MB hard drive.
Code
import {
  Card,
  CardContent,
  CardDescription,
  CardFooter,
  CardHeader,
  CardTitle,
} from "@/components/windows95-ui/card"

<Card>
  <CardHeader>
    <CardTitle>Card Title</CardTitle>
    <CardDescription>Card description</CardDescription>
  </CardHeader>
  <CardContent>
    Card content
  </CardContent>
  <CardFooter>
    <Button>Action</Button>
  </CardFooter>
</Card>