--- title: Card description: Displays a card with header, content, and footer. component: true --- ## Installation CLI Manual ```bash npx shadcn-ui@latest add card ``` Copy and paste the following code into your project. Update the import paths to match your project setup. ## Usage ```tsx import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card" ``` ```tsx Card Title Card Description

Card Content

Card Footer

``` ## Examples