{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "logo-cloud-categorized-grid",
  "title": "Logo Cloud Categorized Grid",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/logo-cloud-categorized-grid/LogoCloudCategorizedGrid.tsx",
      "content": "'use client'\n\nimport * as React from 'react'\nimport { ArrowRight, Brain, Building2, Cloud, Globe, Quote, ShieldCheck, Terminal, X } from 'lucide-react'\nimport { Badge } from '@/components/ui/badge'\nimport { Card } from '@/components/ui/card'\nimport { cn } from '@/lib/utils'\n\ninterface CustomerEntity {\n  id: string\n  name: string\n  category: 'cloud' | 'devtools' | 'fintech' | 'ai'\n  tier: string\n  scale: string\n  quote: string\n  author: string\n  title: string\n}\n\nconst customerList: CustomerEntity[] = [\n  // Infrastructure & Cloud\n  {\n    id: 'cloudflare',\n    name: 'Cloudflare',\n    category: 'cloud',\n    tier: 'Enterprise Scale',\n    scale: '300+ Edge Data Centers',\n    quote:\n      'UIPKGE allowed us to standardize our internal console UI across 40+ engineering squads with zero bundle overhead.',\n    author: 'Alex K.',\n    title: 'Principal Architect, Cloudflare Workers',\n  },\n  {\n    id: 'flyio',\n    name: 'Fly.io',\n    category: 'cloud',\n    tier: 'Core Partner',\n    scale: '50k+ Compute Machines',\n    quote: 'We copy the raw SFC components and style them directly to match our brand — no package upgrades to fight.',\n    author: 'Sam T.',\n    title: 'Lead Frontend Engineer',\n  },\n  {\n    id: 'railway',\n    name: 'Railway',\n    category: 'cloud',\n    tier: 'Growth Tier',\n    scale: '1.5M Deployed Services',\n    quote:\n      'AST-level source control gives our team complete confidence without ever fearing breaking upstream package releases.',\n    author: 'Elena R.',\n    title: 'VP of Product Experience',\n  },\n\n  // Developer Tooling\n  {\n    id: 'vercel',\n    name: 'Vercel',\n    category: 'devtools',\n    tier: 'Design Pioneer',\n    scale: '100M+ Monthly Visitors',\n    quote:\n      'The level of keyboard ergonomics, focus ring layering, and spring physics in UIPKGE meets the highest craft benchmarks.',\n    author: 'Rauno F.',\n    title: 'Design Engineering Advisor',\n  },\n  {\n    id: 'supabase',\n    name: 'Supabase',\n    category: 'devtools',\n    tier: 'Ecosystem Partner',\n    scale: '1M+ Databases Provisioned',\n    quote: 'Dual-framework parity means we can ship both Vue and React examples for our developer docs in minutes.',\n    author: 'Ant W.',\n    title: 'Co-Founder & CEO',\n  },\n  {\n    id: 'biome',\n    name: 'BiomeJS',\n    category: 'devtools',\n    tier: 'Open Source',\n    scale: '20M+ Weekly Downloads',\n    quote: 'The cleanest AST code patterns in any modern UI registry. 100% type-safe.',\n    author: 'Nico M.',\n    title: 'Core Maintainer',\n  },\n\n  // Fintech & Security\n  {\n    id: 'stripe',\n    name: 'Stripe',\n    category: 'fintech',\n    tier: 'Global Infrastructure',\n    scale: '$1T+ Payment Volume',\n    quote:\n      'Zero dependency bloat guarantees compliance with strict internal security and dependency auditing requirements.',\n    author: 'Marcus H.',\n    title: 'Staff Security Engineer',\n  },\n  {\n    id: 'ramp',\n    name: 'Ramp',\n    category: 'fintech',\n    tier: 'Scale Unicorn',\n    scale: '$10B+ Managed Spend',\n    quote: 'The dense KPI tiles and transaction workbenches are plug-and-play masterpieces.',\n    author: 'David P.',\n    title: 'Director of Frontend Engineering',\n  },\n  {\n    id: 'snyk',\n    name: 'Snyk Security',\n    category: 'fintech',\n    tier: 'Enterprise SecOps',\n    scale: '2.5M+ Repos Scanned',\n    quote: 'Owning the source code completely removes transitive dependency CVE vulnerabilities.',\n    author: 'Sarah L.',\n    title: 'Head of Developer Relations',\n  },\n\n  // AI & Machine Learning\n  {\n    id: 'replicate',\n    name: 'Replicate',\n    category: 'ai',\n    tier: 'AI Infrastructure',\n    scale: '500M+ Model Inferences',\n    quote: 'We built our interactive prompt tester in an afternoon using UIPKGE terminal and slider primitives.',\n    author: 'Ben F.',\n    title: 'Co-Founder',\n  },\n  {\n    id: 'modal',\n    name: 'Modal Labs',\n    category: 'ai',\n    tier: 'GPU Cloud',\n    scale: '10k+ GPU Clusters',\n    quote: 'The tactile feel and speed of the UI blocks matches the lightning speed of our Python container runs.',\n    author: 'Erik B.',\n    title: 'Co-Founder & CTO',\n  },\n  {\n    id: 'mistral',\n    name: 'Mistral AI',\n    category: 'ai',\n    tier: 'Frontier AI',\n    scale: 'Global Deployment',\n    quote: 'Phenomenal attention to typographic hierarchy and clean Geist font metrics.',\n    author: 'Arthur M.',\n    title: 'Co-Founder',\n  },\n]\n\ntype VerticalCategory = 'all' | 'cloud' | 'devtools' | 'fintech' | 'ai'\n\nexport interface LogoCloudCategorizedGridProps {\n  className?: string\n}\n\nexport function LogoCloudCategorizedGrid({ className }: LogoCloudCategorizedGridProps) {\n  const [selectedCategory, setSelectedCategory] = React.useState<VerticalCategory>('all')\n  const [activeModalCustomer, setActiveModalCustomer] = React.useState<CustomerEntity | null>(null)\n\n  const categoryLabels: Record<VerticalCategory, { label: string; icon: any }> = {\n    all: { label: 'All Industries', icon: Globe },\n    cloud: { label: 'Cloud & Infra', icon: Cloud },\n    devtools: { label: 'DevTools & DX', icon: Terminal },\n    fintech: { label: 'Fintech & Security', icon: ShieldCheck },\n    ai: { label: 'AI & GPU Compute', icon: Brain },\n  }\n\n  const filteredCustomers = React.useMemo(() => {\n    if (selectedCategory === 'all') return customerList\n    return customerList.filter((c) => c.category === selectedCategory)\n  }, [selectedCategory])\n\n  return (\n    <section\n      data-slot=\"logo-cloud-categorized-grid\"\n      className={cn('bg-background relative overflow-hidden px-4 py-16 sm:px-6 sm:py-24 lg:px-8', className)}\n    >\n      <div className=\"mx-auto max-w-7xl space-y-12\">\n        {/* Section Header */}\n        <div className=\"mx-auto max-w-3xl space-y-4 text-center\">\n          <Badge variant=\"secondary\" className=\"gap-1.5 px-3 py-1 font-mono text-xs shadow-xs\">\n            <Building2 className=\"text-primary size-3.5\" />\n            Industry Benchmark Customers\n          </Badge>\n          <h2 className=\"text-foreground text-3xl font-bold tracking-tight sm:text-4xl\">\n            Powering the world's most rigorous engineering organizations.\n          </h2>\n          <p className=\"text-muted-foreground text-base\">\n            From frontier AI labs to global payment platforms, see how top tier engineering teams build on UIPKGE.\n          </p>\n\n          {/* Vertical Category Filter Tabs */}\n          <div className=\"flex flex-wrap items-center justify-center gap-1 pt-4\">\n            {(Object.keys(categoryLabels) as VerticalCategory[]).map((catKey) => {\n              const meta = categoryLabels[catKey]\n              const Icon = meta.icon\n              return (\n                <button\n                  key={catKey}\n                  type=\"button\"\n                  className={cn(\n                    'flex items-center gap-1.5 rounded-lg border px-3 py-1.5 font-mono text-xs transition-colors',\n                    selectedCategory === catKey\n                      ? 'border-primary bg-primary text-primary-foreground font-semibold shadow-xs'\n                      : 'border-border bg-card/60 text-muted-foreground hover:text-foreground hover:bg-muted',\n                  )}\n                  onClick={() => setSelectedCategory(catKey)}\n                >\n                  <Icon className=\"size-3.5\" />\n                  <span>{meta.label}</span>\n                </button>\n              )\n            })}\n          </div>\n        </div>\n\n        {/* Categorized Customer Grid */}\n        <div className=\"grid grid-cols-1 gap-4 sm:grid-cols-2 sm:gap-6 lg:grid-cols-3\">\n          {filteredCustomers.map((customer) => (\n            <Card\n              key={customer.id}\n              className=\"border-border bg-card/90 hover:border-primary/40 group flex cursor-pointer flex-col justify-between space-y-4 rounded-2xl p-5 shadow-sm transition-colors hover:shadow-md\"\n              onClick={() => setActiveModalCustomer(customer)}\n            >\n              {/* Card Top: Name & Tier Pill */}\n              <div className=\"flex items-center justify-between\">\n                <div className=\"flex items-center gap-2.5\">\n                  <div className=\"bg-primary/10 text-primary flex size-8 items-center justify-center rounded-lg font-mono text-xs font-bold\">\n                    {customer.name.charAt(0)}\n                  </div>\n                  <div>\n                    <h3 className=\"text-foreground group-hover:text-primary font-mono text-sm font-bold transition-colors\">\n                      {customer.name}\n                    </h3>\n                    <p className=\"text-muted-foreground text-xs\">{customer.scale}</p>\n                  </div>\n                </div>\n                <Badge variant=\"outline\" className=\"font-mono text-xs capitalize\">\n                  {customer.tier}\n                </Badge>\n              </div>\n\n              {/* Quote Excerpt */}\n              <p className=\"text-muted-foreground line-clamp-2 text-xs leading-relaxed italic\">\n                &ldquo;{customer.quote}&rdquo;\n              </p>\n\n              {/* Card Footer: Author & Read Case Study */}\n              <div className=\"border-border/60 flex items-center justify-between border-t pt-2 text-xs\">\n                <span className=\"text-muted-foreground font-mono text-xs\">{customer.author}</span>\n                <span className=\"text-primary flex items-center gap-1 text-xs font-medium group-hover:underline\">\n                  <span>Read quote</span>\n                  <ArrowRight className=\"size-3\" />\n                </span>\n              </div>\n            </Card>\n          ))}\n        </div>\n\n        {/* Testimonial Detail Dialog Modal */}\n        {activeModalCustomer && (\n          <div className=\"bg-background/80 fixed inset-0 z-50 flex items-center justify-center p-4 backdrop-blur-md sm:p-6\">\n            <div className=\"bg-card border-border relative w-full max-w-xl space-y-6 rounded-2xl border p-6 text-left shadow-sm sm:p-8\">\n              <div className=\"border-border flex items-center justify-between border-b pb-4\">\n                <div className=\"flex items-center gap-3\">\n                  <div className=\"bg-primary/10 text-primary flex size-10 items-center justify-center rounded-xl font-mono text-sm font-bold\">\n                    {activeModalCustomer.name.charAt(0)}\n                  </div>\n                  <div>\n                    <h3 className=\"text-foreground font-mono text-base font-bold\">{activeModalCustomer.name}</h3>\n                    <p className=\"text-muted-foreground font-mono text-xs\">{activeModalCustomer.scale}</p>\n                  </div>\n                </div>\n                <button\n                  type=\"button\"\n                  className=\"text-muted-foreground hover:text-foreground hover:bg-muted rounded-md p-1 transition-colors\"\n                  onClick={() => setActiveModalCustomer(null)}\n                >\n                  <X className=\"size-4\" />\n                </button>\n              </div>\n\n              <div className=\"space-y-4\">\n                <Quote className=\"text-primary/40 size-6\" />\n                <p className=\"text-foreground text-sm leading-relaxed sm:text-base\">\n                  &ldquo;{activeModalCustomer.quote}&rdquo;\n                </p>\n              </div>\n\n              <div className=\"border-border bg-muted/20 -mx-6 -mb-6 flex items-center justify-between rounded-b-2xl border-t p-4 px-6 pt-4 sm:-mx-8 sm:-mb-8 sm:px-8\">\n                <div>\n                  <p className=\"text-foreground text-xs font-bold\">{activeModalCustomer.author}</p>\n                  <p className=\"text-muted-foreground font-mono text-xs\">{activeModalCustomer.title}</p>\n                </div>\n                <Badge variant=\"outline\" className=\"border-success/20 bg-success/10 text-success font-mono text-xs\">\n                  Verified Production Customer\n                </Badge>\n              </div>\n            </div>\n          </div>\n        )}\n      </div>\n    </section>\n  )\n}\nexport default LogoCloudCategorizedGrid\n",
      "type": "registry:block",
      "target": "~/components/blocks/LogoCloudCategorizedGrid.tsx"
    }
  ],
  "dependencies": [
    "lucide-react"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/react/badge.json",
    "https://uipkge.dev/r/react/card.json"
  ],
  "description": "Categorized 4-industry logo & enterprise customer workbench with scale metrics, category filter tabs, and full testimonial modal inspect.",
  "categories": [
    "marketing"
  ],
  "deprecated": true,
  "replacedBy": "logos"
}