{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "card-with-header",
  "type": "registry:component",
  "title": "Card",
  "author": "Toby Belhome",
  "description": "Displays a card with header, content, and footer.",
  "dependencies": [],
  "registryDependencies": [
    "card"
  ],
  "files": [
    {
      "path": "examples/components/card/with-header/page.tsx",
      "content": "import { Card, CardContent, CardDescription, CardHeader, CardTitle } from \"@/components/ui/card\";\n\nexport default function CardDemo() {\n  return (\n    <Card className=\"w-full max-w-sm\">\n      <CardHeader>\n        <CardTitle>Card Title</CardTitle>\n      </CardHeader>\n      <CardContent>\n        <p className=\"text-sm\">This is the card content. Other content is added here.</p>\n      </CardContent>\n    </Card>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/card-with-header.tsx"
    }
  ],
  "meta": {
    "isPro": false
  }
}