---
title: Card
description: Displays a card with header, content, and footer.
component: true
---
## Installation
```bash
npx shadcn-ui add card
```
Manual Installation
1. Copy and paste the following code into your project.
This is the `` primitive. You can place it in a file at
`components/ui/card.tsx`.
## Usage
```tsx
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card"
```
```tsx
Card Title
Card Description
Card Content
Card Footer
```
## Examples