{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "review-cards",
  "type": "registry:component",
  "description": "A Card component with optional code display for UI blocks.",
  "registryDependencies": [
    "card",
    "button"
  ],
  "files": [
    {
      "path": "src/app/components/ui-blocks/cards/code/ReviewCardsCode.tsx",
      "content": "import { Card } from \"@/components/ui/card\"\r\nimport { Button } from \"@/components/ui/button\"\r\nimport Image from \"next/image\"\r\n\r\nconst avatars = [\"/images/profile/user-6.jpg\", \"/images/profile/user-7.jpg\", \"/images/profile/user-8.jpg\", \"/images/profile/user-5.jpg\"]\r\n\r\nconst ReviewsCard = () => {\r\n    return (\r\n        <Card className=\"p-7 flex flex-col gap-9 items-start text-center\">\r\n            <div className=\"flex flex-col items-start gap-1\">\r\n                <h3 className=\"font-semibold text-lg\">Reviews</h3>\r\n                <p className=\"text-sm text-muted-foreground\">\r\n                    Overview of Review\r\n                </p>\r\n            </div>\r\n            <div className=\"flex flex-col gap-1 items-start\">\r\n                <div className=\"flex flex-col gap-1 items-start\">\r\n                    <h4 className=\"text-2xl text-ld font-semibold\">25426</h4>\r\n                    <p className=\"text-sm text-muted-foreground\">This month we got 346 New Reviews</p>\r\n                </div>\r\n                <div className=\"flex items-center gap-2 py-4\">\r\n                    {avatars?.map((value, index) => {\r\n                        return (\r\n                            <Image key={index} src={value} alt=\"avatar\" width={45} height={45} className=\"rounded-full\" />\r\n                        )\r\n                    })}\r\n                </div>\r\n                <div className=\"mt-3\">\r\n                    <Button size={'sm'}>Checkout All Reviews</Button>\r\n                </div>\r\n            </div>\r\n        </Card>\r\n    )\r\n}\r\n\r\nexport default ReviewsCard\r\n",
      "type": "registry:component",
      "target": "components/tailwind-admin/cards/review-cards/ReviewCardsCode.tsx"
    }
  ]
}