{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "card-example",
  "title": "Card",
  "description": "card-example",
  "registryDependencies": [
    "https://intentui.com/r/button",
    "https://intentui.com/r/card"
  ],
  "files": [
    {
      "path": "src/components/examples/surfaces/card/card-example.tsx",
      "content": "'use client'\n\nimport { Button } from '@/components/ui/button'\nimport {\n  Card,\n  CardContent,\n  CardDescription,\n  CardFooter,\n  CardHeader,\n  CardTitle,\n} from '@/components/ui/card'\n\nexport default function CardDemo() {\n  return (\n    <Card className=\"max-w-lg\">\n      <CardHeader>\n        <CardTitle>Monthly Report</CardTitle>\n        <CardDescription>Financial summary for June</CardDescription>\n      </CardHeader>\n      <CardContent>\n        The monthly financial report shows a 15% increase in revenue compared to last month.\n      </CardContent>\n      <CardFooter>\n        <Button>View Details</Button>\n      </CardFooter>\n    </Card>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/card-example/page.tsx"
    }
  ],
  "type": "registry:page"
}