{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "integrations-featured-pairs",
  "title": "Integrations — Featured Pairs",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/integrations-featured-pairs/IntegrationsFeaturedPairs.tsx",
      "content": "'use client'\n\nimport { ArrowRight, Check, Plug } from 'lucide-react'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Card, CardContent } from '@/components/ui/card'\nimport { Separator } from '@/components/ui/separator'\n\nconst featured = [\n  {\n    mark: 'SF',\n    name: 'Snowflake',\n    summary: 'Query your warehouse directly. Metrics resolve against live tables instead of a nightly copy.',\n    steps: ['Create a read-only role', 'Paste the account URL', 'Pick the databases to expose'],\n    status: 'Connected',\n    healthy: true,\n    meta: 'Read-only · no data egress',\n  },\n  {\n    mark: 'OK',\n    name: 'Okta',\n    summary: 'Group membership drives row-level scope, so access changes the moment HR changes it.',\n    steps: ['Add the SAML app', 'Enable SCIM provisioning', 'Map groups to scopes'],\n    status: 'Connected',\n    healthy: true,\n    meta: 'SAML + SCIM',\n  },\n  {\n    mark: 'SL',\n    name: 'Slack',\n    summary: 'Drift and freshness alerts land in the channel that owns the metric, with the run attached.',\n    steps: ['Install the app', 'Choose default channels', 'Route alerts per metric owner'],\n    status: 'Needs re-auth',\n    healthy: false,\n    meta: 'Token expires every 90 days',\n  },\n]\n\nexport function IntegrationsFeaturedPairs() {\n  return (\n    <section data-slot=\"integrations-featured-pairs\" 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\">Featured integrations</Badge>\n          <h2 className=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">The three most teams connect first</h2>\n          <p className=\"text-muted-foreground mt-3 text-lg\">\n            Each one is three steps and read-only. What the connection actually does is written on the card.\n          </p>\n        </div>\n\n        <div className=\"mt-10 grid gap-4 md:grid-cols-3\">\n          {featured.map((integration) => (\n            <Card key={integration.name}>\n              <CardContent className=\"flex h-full flex-col p-6\">\n                <div className=\"flex items-center gap-3\">\n                  <span\n                    className=\"border-border text-muted-foreground flex size-10 items-center justify-center rounded-lg border font-mono text-sm font-semibold\"\n                    aria-hidden=\"true\"\n                  >\n                    {integration.mark}\n                  </span>\n                  <div className=\"min-w-0\">\n                    <p className=\"truncate text-sm font-semibold\">{integration.name}</p>\n                    <p className=\"text-muted-foreground truncate text-xs\">{integration.meta}</p>\n                  </div>\n                </div>\n\n                <p className=\"text-muted-foreground mt-4 text-sm leading-relaxed\">{integration.summary}</p>\n\n                <Separator className=\"my-5\" />\n\n                <p className=\"text-muted-foreground font-mono text-xs tracking-[0.14em] uppercase\">Setup</p>\n                <ol className=\"mt-3 space-y-2\">\n                  {integration.steps.map((step, index) => (\n                    <li key={step} className=\"text-foreground flex items-start gap-2.5 text-sm\">\n                      <span className=\"text-muted-foreground/70 mt-px font-mono text-xs\">{index + 1}</span>\n                      <span>{step}</span>\n                    </li>\n                  ))}\n                </ol>\n\n                <div className=\"mt-auto flex items-center justify-between gap-3 pt-6\">\n                  <Badge variant={integration.healthy ? 'secondary' : 'outline'} className=\"gap-1.5\">\n                    {integration.healthy ? (\n                      <Check className=\"size-3\" aria-hidden=\"true\" />\n                    ) : (\n                      <Plug className=\"size-3\" aria-hidden=\"true\" />\n                    )}\n                    {integration.status}\n                  </Badge>\n                  <Button variant=\"ghost\" size=\"sm\" className=\"h-auto px-2 py-1\">\n                    Docs\n                    <ArrowRight className=\"ml-1 size-3.5\" aria-hidden=\"true\" />\n                  </Button>\n                </div>\n              </CardContent>\n            </Card>\n          ))}\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "~/components/blocks/IntegrationsFeaturedPairs.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/separator.json"
  ],
  "description": "Three promoted integrations, each a card pairing the service with what the connection actually does, the three setup steps it takes, and its live connection state.",
  "categories": [
    "marketing"
  ]
}