{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "card-deck-demo",
  "registryDependencies": [
    "@delta/card-deck"
  ],
  "files": [
    {
      "path": "examples/card-deck-demo.tsx",
      "content": "import {\n  CardDeckContainer,\n  CardDeckItem,\n} from \"@/components/ui/card-deck\"\n\nexport default function CardDeckDemo() {\n  const images = [\n    {\n      src: \"https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=400&h=600&fit=crop\",\n      alt: \"Coffee Cup\",\n    },\n    {\n      src: \"https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=400&h=600&fit=crop\",\n      alt: \"Mountain Lake\",\n    },\n    {\n      src: \"https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=400&h=600&fit=crop\",\n      alt: \"Nature Path\",\n    },\n  ]\n\n  return (\n    <div className=\"flex h-full w-full items-center justify-center\">\n      <CardDeckContainer>\n        {images.map((image, index) => (\n          <CardDeckItem key={index} className=\"rounded-3xl\">\n            <img\n              className=\"h-full w-full rounded-3xl object-cover\"\n              src={image.src}\n              alt={image.alt}\n            />\n          </CardDeckItem>\n        ))}\n      </CardDeckContainer>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}