{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "card-deck-yugioh-demo",
  "registryDependencies": [
    "@delta/card-deck"
  ],
  "files": [
    {
      "path": "examples/card-deck-yugioh-demo.tsx",
      "content": "import {\n  CardDeckContainer,\n  CardDeckItem,\n} from \"@/components/ui/card-deck\"\n\nexport default function CardDeckYugiohDemo() {\n  const images = [\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9598.JPG\",\n      alt: \"Yu-Gi-Oh Card 1\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9599.JPG\",\n      alt: \"Yu-Gi-Oh Card 2\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9600.JPG\",\n      alt: \"Yu-Gi-Oh Card 3\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9601.JPG\",\n      alt: \"Yu-Gi-Oh Card 4\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9602.JPG\",\n      alt: \"Yu-Gi-Oh Card 5\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9603.JPG\",\n      alt: \"Yu-Gi-Oh Card 6\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9604.JPG\",\n      alt: \"Yu-Gi-Oh Card 7\",\n    },\n    {\n      src: \"/images/stock/yu-gi-oh/IMG_9605.JPG\",\n      alt: \"Yu-Gi-Oh Card 8\",\n    },\n  ]\n\n  return (\n    <div className=\"my-6 flex h-full w-full items-center justify-center p-12\">\n      <CardDeckContainer enableInitialAnimation={false}>\n        {images.map((image, index) => (\n          <CardDeckItem key={index} className=\"rounded-none\">\n            <img\n              className=\"h-auto w-full 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"
}