{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "card-07",
  "title": "Product Card",
  "description": "A product card component",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "card",
    "button"
  ],
  "files": [
    {
      "path": "src/components/customized/card/card-07.tsx",
      "content": "import { ArrowRight, Shapes } from \"lucide-react\";\nimport { Button } from \"@/registry/ui/button\";\nimport { Card, CardContent, CardFooter, CardHeader } from \"@/registry/ui/card\";\n\nconst ProductCard = () => {\n  return (\n    <Card className=\"max-w-xs gap-0 pt-0 shadow-none\">\n      <CardHeader className=\"flex flex-row items-center gap-3 px-5 py-4 font-semibold\">\n        <div className=\"flex h-8 w-8 items-center justify-center rounded-full bg-primary text-primary-foreground\">\n          <Shapes className=\"h-5 w-5\" />\n        </div>\n        Shadcn UI Blocks\n      </CardHeader>\n\n      <CardContent className=\"mt-1 px-5 text-[15px] text-muted-foreground\">\n        <p>\n          Explore a collection of Shadcn UI blocks and components, ready to\n          preview and copy.\n        </p>\n        <div className=\"mt-5 aspect-video w-full rounded-xl bg-muted\" />\n      </CardContent>\n\n      <CardFooter className=\"mt-6\">\n        <Button className=\"/blocks\">\n          Explore Blocks <ArrowRight />\n        </Button>\n      </CardFooter>\n    </Card>\n  );\n};\n\nexport default ProductCard;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}