ComponentsCard

Card

A card component with header, title, description, content, and footer sections.

Installation

$ npx @nehal712521/inprogress add card

Preview

Card Title

This is a description of the card.

Card content goes here.

Usage

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

<Card>
  <CardHeader>
    <CardTitle>Title</CardTitle>
    <CardDescription>Description</CardDescription>
  </CardHeader>
  <CardContent>Content</CardContent>
  <CardFooter>Footer</CardFooter>
</Card>