{
  "name": "cards-demo-2",
  "type": "registry:block",
  "files": [
    {
      "path": "components/cards-demo-2.tsx",
      "content": "\"use client\";\nimport { cn } from \"@/lib/utils\";\n\n\nexport default function CardDemo() {\n  return (\n    <div className=\"max-w-xs w-full group/card\">\n      <div\n        className={cn(\n          \" cursor-pointer overflow-hidden relative card h-96 rounded-md shadow-xl  max-w-sm mx-auto backgroundImage flex flex-col justify-between p-4\",\n          \"bg-[url(https://images.unsplash.com/photo-1544077960-604201fe74bc?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1651&q=80)] bg-cover\"\n        )}\n      >\n        <div className=\"absolute w-full h-full top-0 left-0 transition duration-300 group-hover/card:bg-black opacity-60\"></div>\n        <div className=\"flex flex-row items-center space-x-4 z-10\">\n          <img\n            height=\"100\"\n            width=\"100\"\n            alt=\"Avatar\"\n            src=\"/manu.png\"\n            className=\"h-10 w-10 rounded-full border-2 object-cover\"\n          />\n          <div className=\"flex flex-col\">\n            <p className=\"font-normal text-base text-gray-50 relative z-10\">\n              Manu Arora\n            </p>\n            <p className=\"text-sm text-gray-400\">2 min read</p>\n          </div>\n        </div>\n        <div className=\"text content\">\n          <h1 className=\"font-bold text-xl md:text-2xl text-gray-50 relative z-10\">\n            Author Card\n          </h1>\n          <p className=\"font-normal text-sm text-gray-50 relative z-10 my-4\">\n            Card with Author avatar, complete name and time to read - most\n            suitable for blogs.\n          </p>\n        </div>\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:block",
      "target": "components/cards-demo-2.tsx"
    }
  ],
  "author": "Manu Arora <hi@manuarora.in>",
  "title": "Cards Demo 2"
}