{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "integrations-featured-pairs",
  "title": "Integrations — Featured Pairs",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-vue/blocks/integrations-featured-pairs/IntegrationsFeaturedPairs.vue",
      "content": "<script setup lang=\"ts\">\nimport { ArrowRight, Check, Plug } from 'lucide-vue-next'\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</script>\n\n<template>\n  <section data-slot=\"integrations-featured-pairs\" class=\"bg-background\">\n    <div class=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n      <div class=\"max-w-2xl\">\n        <Badge variant=\"secondary\">Featured integrations</Badge>\n        <h2 class=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">The three most teams connect first</h2>\n        <p class=\"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 class=\"mt-10 grid gap-4 md:grid-cols-3\">\n        <Card v-for=\"integration in featured\" :key=\"integration.name\">\n          <CardContent class=\"flex h-full flex-col p-6\">\n            <div class=\"flex items-center gap-3\">\n              <span\n                class=\"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 class=\"min-w-0\">\n                <p class=\"truncate text-sm font-semibold\">{{ integration.name }}</p>\n                <p class=\"text-muted-foreground truncate text-xs\">{{ integration.meta }}</p>\n              </div>\n            </div>\n\n            <p class=\"text-muted-foreground mt-4 text-sm leading-relaxed\">{{ integration.summary }}</p>\n\n            <Separator class=\"my-5\" />\n\n            <p class=\"text-muted-foreground font-mono text-xs tracking-[0.14em] uppercase\">Setup</p>\n            <ol class=\"mt-3 space-y-2\">\n              <li\n                v-for=\"(step, index) in integration.steps\"\n                :key=\"step\"\n                class=\"text-foreground flex items-start gap-2.5 text-sm\"\n              >\n                <span class=\"text-muted-foreground/70 mt-px font-mono text-xs\">{{ index + 1 }}</span>\n                <span>{{ step }}</span>\n              </li>\n            </ol>\n\n            <div class=\"mt-auto flex items-center justify-between gap-3 pt-6\">\n              <Badge :variant=\"integration.healthy ? 'secondary' : 'outline'\" class=\"gap-1.5\">\n                <Check v-if=\"integration.healthy\" class=\"size-3\" aria-hidden=\"true\" />\n                <Plug v-else class=\"size-3\" aria-hidden=\"true\" />\n                {{ integration.status }}\n              </Badge>\n              <Button variant=\"ghost\" size=\"sm\" class=\"h-auto px-2 py-1\">\n                Docs\n                <ArrowRight class=\"ml-1 size-3.5\" aria-hidden=\"true\" />\n              </Button>\n            </div>\n          </CardContent>\n        </Card>\n      </div>\n    </div>\n  </section>\n</template>\n",
      "type": "registry:block",
      "target": "~/app/components/blocks/IntegrationsFeaturedPairs.vue"
    }
  ],
  "dependencies": [
    "lucide-vue-next"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/vue/badge.json",
    "https://uipkge.dev/r/vue/button.json",
    "https://uipkge.dev/r/vue/card.json",
    "https://uipkge.dev/r/vue/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"
  ]
}