Display

Card

Displays a card with header, content, and footer sections. Used for grouping related information.

Create projectDeploy your new project in one-click.

Sections

Cards are composed of several smaller components for structure.

CardHeader
TitleDescription
CardContent
Main content goes here.
CardFooter
Footer actions

Props

ComponentDescription
CardThe main container component for the card.
CardHeaderContains the title and description.
CardTitleA heading element for the card.
CardDescriptionSupporting text for the title.
CardContentThe body of the card.
CardFooterActions or additional information at the bottom.

Usage

import { Card, CardContent } from '@/components/ui/card';

// Simple data card
<Card>
  <CardContent className="pt-6">
    <Text>Quick info card.</Text>
  </CardContent>
</Card>

Installation

$npx kachindo-ui add card
Profile