{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "bento-asymmetric-grid",
  "title": "Bento — Asymmetric Grid",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/bento-asymmetric-grid/BentoAsymmetricGrid.tsx",
      "content": "'use client'\n\nimport { ArrowUpRight, Quote } from 'lucide-react'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Card, CardContent } from '@/components/ui/card'\nimport { Progress } from '@/components/ui/progress'\nimport { Separator } from '@/components/ui/separator'\n\nconst capabilities = ['Versioned definitions', 'Row-level access', 'Query budgets', 'Drift alerting', 'Audit export']\n\nconst budgets = [\n  { team: 'Finance', used: 62 },\n  { team: 'RevOps', used: 38 },\n  { team: 'Product', used: 81 },\n]\n\nexport function BentoAsymmetricGrid() {\n  return (\n    <section data-slot=\"bento-asymmetric-grid\" className=\"bg-background\">\n      <div className=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n        <div className=\"max-w-2xl\">\n          <Badge variant=\"secondary\">The shape of it</Badge>\n          <h2 className=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">One layer, five jobs</h2>\n        </div>\n\n        {/* Spans are explicit rather than auto-flowed, so rearranging the\n            composition is a class change and not a reshuffle of the markup. */}\n        <div className=\"mt-10 grid gap-3 sm:grid-cols-3 lg:grid-rows-2\">\n          <Card className=\"sm:row-span-2\">\n            <CardContent className=\"flex h-full flex-col p-6\">\n              <p className=\"text-muted-foreground font-mono text-xs tracking-[0.14em] uppercase\">Everything included</p>\n              <h3 className=\"mt-3 text-xl font-semibold tracking-tight text-balance\">No feature gates between plans</h3>\n              <p className=\"text-muted-foreground mt-3 text-sm leading-relaxed\">\n                Limits differ; capabilities do not. The list below is on every plan from the first day of a trial.\n              </p>\n\n              <Separator className=\"my-5\" />\n\n              <ul className=\"space-y-2.5\">\n                {capabilities.map((capability) => (\n                  <li key={capability} className=\"flex items-center gap-2.5 text-sm\">\n                    <span className=\"bg-primary size-1.5 shrink-0 rounded-full\" aria-hidden=\"true\" />\n                    <span>{capability}</span>\n                  </li>\n                ))}\n              </ul>\n\n              <Button variant=\"outline\" size=\"sm\" className=\"mt-auto self-start pt-0 [&]:mt-6\">\n                Compare plans\n              </Button>\n            </CardContent>\n          </Card>\n\n          <Card className=\"sm:col-span-2\">\n            <CardContent className=\"flex h-full flex-wrap items-center justify-between gap-4 p-6\">\n              <div>\n                <p className=\"font-display text-4xl font-bold tracking-tight\">4.2 days</p>\n                <p className=\"text-muted-foreground mt-1 text-sm\">median time to close, down from 9.4</p>\n              </div>\n              <Badge variant=\"secondary\" className=\"shrink-0\">\n                240 rollouts\n              </Badge>\n            </CardContent>\n          </Card>\n\n          <Card>\n            <CardContent className=\"p-6\">\n              <p className=\"text-muted-foreground text-xs tracking-wide uppercase\">Query budgets</p>\n              <div className=\"mt-4 space-y-3\">\n                {budgets.map((budget) => (\n                  <div key={budget.team}>\n                    <div className=\"flex items-baseline justify-between gap-3\">\n                      <span className=\"text-xs font-medium\">{budget.team}</span>\n                      <span className=\"text-muted-foreground font-mono text-xs\">{budget.used}%</span>\n                    </div>\n                    <Progress value={budget.used} className=\"mt-1.5 h-1.5\" aria-label={`${budget.team} budget used`} />\n                  </div>\n                ))}\n              </div>\n            </CardContent>\n          </Card>\n\n          <Card className=\"group\">\n            <CardContent className=\"flex h-full flex-col p-6\">\n              <Quote className=\"text-muted-foreground/60 size-4\" aria-hidden=\"true\" />\n              <blockquote className=\"mt-3 text-sm leading-relaxed\">\n                “We stopped arguing about whose number was right.”\n              </blockquote>\n              <p className=\"text-muted-foreground mt-auto pt-4 text-xs\">Erin Walsh · VP Finance, Northwind</p>\n              <Button variant=\"ghost\" size=\"sm\" className=\"mt-2 h-auto justify-start px-0 text-xs\">\n                Read the story\n                <ArrowUpRight\n                  className=\"ml-1 size-3 transition-transform group-hover:translate-x-0.5 group-hover:-translate-y-0.5\"\n                  aria-hidden=\"true\"\n                />\n              </Button>\n            </CardContent>\n          </Card>\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "~/components/blocks/BentoAsymmetricGrid.tsx"
    }
  ],
  "dependencies": [
    "lucide-react"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/react/badge.json",
    "https://uipkge.dev/r/react/button.json",
    "https://uipkge.dev/r/react/card.json",
    "https://uipkge.dev/r/react/progress.json",
    "https://uipkge.dev/r/react/separator.json"
  ],
  "description": "Asymmetric bento where one tall tile anchors the composition and three shorter tiles carry a headline metric, a budget breakdown, and a customer quote.",
  "categories": [
    "marketing"
  ]
}