{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-testimonials-mini-with-dividers-in-grid","type":"registry:block","title":"Mini With Dividers In Grid","files":[{"path":"components/blocks/marketing/testimonials/mini-with-dividers-in-grid.tsx","content":"import { Avatar, AvatarImage } from \"@/components/ui/avatar\";\n\nexport default function MiniWithDividersInGrid() {\n  return (\n    <div className=\"container mx-auto px-4 py-24 md:px-6 lg:py-32 2xl:max-w-[1400px]\">\n      {/* Grid */}\n      <div className=\"divide-border grid grid-cols-1 gap-x-3 divide-y border-y sm:grid-cols-2 sm:divide-x sm:divide-y-0\">\n        <div className=\"py-6 sm:-ms-4 sm:px-4\">\n          {/* Review */}\n          <blockquote>\n            <span className=\"text-sm\">\n              I&apos;m absolutely floored by the level of care and attention to\n              detail Eliana has put into this project and for one can guarantee\n              that we will be a return customer.\n            </span>\n\n            <footer className=\"mt-3\">\n              <div className=\"flex items-center gap-x-2\">\n                <Avatar className=\"size-5 shrink-0\">\n                  <AvatarImage src=\"https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=320&h=320&q=80\" />\n                </Avatar>\n                <div className=\"grow\">\n                  <div className=\"text-muted-foreground text-xs\">\n                    Josh Grazioso\n                  </div>\n                </div>\n              </div>\n            </footer>\n          </blockquote>\n          {/* End Review */}\n        </div>\n\n        <div className=\"py-6 sm:px-4\">\n          {/* Review */}\n          <blockquote>\n            <span className=\"text-sm\">\n              To say that hiring Eliana has been life-changing is an\n              understatement. My business has tripled and I got my life back.\n            </span>\n\n            <footer className=\"mt-3\">\n              <div className=\"flex items-center gap-x-2\">\n                <Avatar className=\"size-5 shrink-0\">\n                  <AvatarImage src=\"https://images.unsplash.com/photo-1671726203390-cdc4354ee2eb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=320&h=320&q=80\" />\n                </Avatar>\n                <div className=\"grow\">\n                  <div className=\"text-muted-foreground text-xs\">\n                    Nicole Grazioso\n                  </div>\n                </div>\n              </div>\n            </footer>\n          </blockquote>\n          {/* End Review */}\n        </div>\n      </div>\n      {/* End Grid */}\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/testimonials/mini-with-dividers-in-grid.tsx"},{"path":"components/ui/avatar.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { Avatar as AvatarPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Avatar({\n  className,\n  size = \"default\",\n  ...props\n}: React.ComponentProps<typeof AvatarPrimitive.Root> & {\n  size?: \"default\" | \"sm\" | \"lg\"\n}) {\n  return (\n    <AvatarPrimitive.Root\n      data-slot=\"avatar\"\n      data-size={size}\n      className={cn(\n        \"group/avatar relative flex size-8 shrink-0 rounded-full select-none after:absolute after:inset-0 after:rounded-full after:border after:border-border after:mix-blend-darken data-[size=lg]:size-10 data-[size=sm]:size-6 dark:after:mix-blend-lighten\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction AvatarImage({\n  className,\n  ...props\n}: React.ComponentProps<typeof AvatarPrimitive.Image>) {\n  return (\n    <AvatarPrimitive.Image\n      data-slot=\"avatar-image\"\n      className={cn(\n        \"aspect-square size-full rounded-full object-cover\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction AvatarFallback({\n  className,\n  ...props\n}: React.ComponentProps<typeof AvatarPrimitive.Fallback>) {\n  return (\n    <AvatarPrimitive.Fallback\n      data-slot=\"avatar-fallback\"\n      className={cn(\n        \"flex size-full items-center justify-center rounded-full bg-muted text-sm text-muted-foreground group-data-[size=sm]/avatar:text-xs\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction AvatarBadge({ className, ...props }: React.ComponentProps<\"span\">) {\n  return (\n    <span\n      data-slot=\"avatar-badge\"\n      className={cn(\n        \"absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full bg-primary text-primary-foreground bg-blend-color ring-2 ring-background select-none\",\n        \"group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden\",\n        \"group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2\",\n        \"group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction AvatarGroup({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"avatar-group\"\n      className={cn(\n        \"group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2 *:data-[slot=avatar]:ring-background\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction AvatarGroupCount({\n  className,\n  ...props\n}: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"avatar-group-count\"\n      className={cn(\n        \"relative flex size-8 shrink-0 items-center justify-center rounded-full bg-muted text-sm text-muted-foreground ring-2 ring-background group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nexport {\n  Avatar,\n  AvatarImage,\n  AvatarFallback,\n  AvatarGroup,\n  AvatarGroupCount,\n  AvatarBadge,\n}\n","type":"registry:ui","target":"components/ui/avatar.tsx"}],"description":"Compact testimonials arranged in a grid with thin dividers between them. Fit many short quotes into a tidy space without crowding the layout.","dependencies":["radix-ui"]}