{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"stats-06","type":"registry:component","title":"Stats 06","description":"A clean statistics component with large numbers, icons, and descriptive labels. Features a responsive grid layout, large typography for impact, and centered alignment. Perfect for showcasing key metrics, community statistics, and achievements on landing pages and marketing sections requiring minimal design with maximum visual impact.","dependencies":["lucide-react"],"files":[{"path":"src/registry/blocks/marketing/social-proof/stats/stats-06.tsx","content":"\"use client\";\n\nimport { Award, Globe, TrendingUp } from \"lucide-react\";\n\nimport { cn } from \"@/registry/lib/utils\";\n\nexport interface Stats06Props {\n  className?: string;\n}\n\nconst content = {\n  stats: [\n    {\n      id: 1,\n      icon: Globe,\n      value: \"50+\",\n      label: \"Countries served worldwide\",\n    },\n    {\n      id: 2,\n      icon: TrendingUp,\n      value: \"99.9%\",\n      label: \"Platform uptime reliability\",\n    },\n    {\n      id: 3,\n      icon: Award,\n      value: \"4.8/5\",\n      label: \"Average customer satisfaction\",\n    },\n  ],\n};\n\nexport function Stats06({ className }: Stats06Props) {\n  return (\n    <section className={cn(\"w-full py-12 md:py-16\", className)}>\n      <div className=\"container px-4 md:px-6\">\n        <div className=\"grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12\">\n          {content.stats.map((stat) => {\n            const Icon = stat.icon;\n            return (\n              <div key={stat.id} className=\"text-center space-y-6\">\n                <div className=\"flex justify-center\">\n                  <Icon className=\"h-10 w-10 text-muted-foreground\" />\n                </div>\n                <div>\n                  <div className=\"text-4xl md:text-5xl font-bold tracking-tight\">\n                    {stat.value}\n                  </div>\n                  <p className=\"text-muted-foreground mt-2 text-sm md:text-base max-w-[200px] mx-auto\">\n                    {stat.label}\n                  </p>\n                </div>\n              </div>\n            );\n          })}\n        </div>\n      </div>\n    </section>\n  );\n}\n","type":"registry:component"},{"path":"src/registry/lib/utils.ts","content":"import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n  return twMerge(clsx(inputs));\n}\n","type":"registry:lib"}]}