{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "resources-teaser-grid",
  "title": "Resources Teaser Grid",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-vue/blocks/resources-teaser-grid/ResourcesTeaserGrid.vue",
      "content": "<script setup lang=\"ts\">\nimport { ArrowRight, ArrowUpRight } from 'lucide-vue-next'\nimport { Avatar, AvatarFallback } from '@/components/ui/avatar'\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  kind: 'Engineering',\n  title: 'Why we version metric definitions instead of dashboards',\n  excerpt:\n    'Dashboards are the output. The definition is the thing teams argue about, so that is what belongs under review — with a diff, an owner, and a revert path.',\n  readTime: '9 min read',\n  date: 'Feb 18, 2026',\n  author: { name: 'Marcus Ellery', role: 'Staff Engineer', initials: 'ME' },\n}\n\nconst recent = [\n  { kind: 'Guide', title: 'A reconciliation checklist for your first close', readTime: '6 min' },\n  { kind: 'Benchmark', title: 'What close speed actually looks like across 240 finance teams', readTime: '11 min' },\n  { kind: 'Changelog', title: 'Row-level scoping now evaluates against SCIM groups', readTime: '3 min' },\n  { kind: 'Opinion', title: 'Self-serve analytics fails for reasons that are not technical', readTime: '7 min' },\n]\n</script>\n\n<template>\n  <section data-slot=\"resources-teaser-grid\" class=\"bg-background\">\n    <div class=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n      <div class=\"flex flex-wrap items-end justify-between gap-6\">\n        <div class=\"max-w-2xl\">\n          <Badge variant=\"secondary\">Resources</Badge>\n          <h2 class=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">Notes from the build</h2>\n          <p class=\"text-muted-foreground mt-3 text-lg\">\n            Engineering write-ups, rollout guides, and the benchmarks behind the claims on this page.\n          </p>\n        </div>\n      </div>\n\n      <div class=\"mt-10 grid gap-4 lg:grid-cols-3\">\n        <!-- Featured piece spans two columns; the recent list stacks beside it. -->\n        <Card class=\"group lg:col-span-2\">\n          <CardContent class=\"flex h-full flex-col p-6 lg:p-8\">\n            <div class=\"flex flex-wrap items-center gap-3\">\n              <Badge variant=\"outline\">{{ featured.kind }}</Badge>\n              <span class=\"text-muted-foreground text-xs\">{{ featured.date }} · {{ featured.readTime }}</span>\n            </div>\n\n            <h3 class=\"mt-4 text-2xl leading-snug font-semibold tracking-tight text-balance\">\n              {{ featured.title }}\n            </h3>\n            <p class=\"text-muted-foreground mt-3 max-w-prose leading-relaxed\">{{ featured.excerpt }}</p>\n\n            <div class=\"mt-auto flex items-center gap-3 pt-8\">\n              <Avatar class=\"size-9\">\n                <AvatarFallback class=\"text-xs\">{{ featured.author.initials }}</AvatarFallback>\n              </Avatar>\n              <div class=\"min-w-0\">\n                <p class=\"truncate text-sm font-medium\">{{ featured.author.name }}</p>\n                <p class=\"text-muted-foreground truncate text-xs\">{{ featured.author.role }}</p>\n              </div>\n              <Button variant=\"ghost\" size=\"sm\" class=\"ml-auto\">\n                Read\n                <ArrowUpRight\n                  class=\"ml-1 size-3.5 transition-transform group-hover:translate-x-0.5 group-hover:-translate-y-0.5\"\n                  aria-hidden=\"true\"\n                />\n              </Button>\n            </div>\n          </CardContent>\n        </Card>\n\n        <Card>\n          <CardContent class=\"p-2\">\n            <ul>\n              <li v-for=\"(post, index) in recent\" :key=\"post.title\">\n                <a\n                  href=\"#\"\n                  class=\"hover:bg-muted focus-visible:ring-ring block rounded-lg p-4 transition-colors focus-visible:ring-2 focus-visible:outline-none\"\n                >\n                  <div class=\"text-muted-foreground flex items-center gap-2 font-mono text-xs tracking-wide uppercase\">\n                    <span>{{ post.kind }}</span>\n                    <span aria-hidden=\"true\">·</span>\n                    <span>{{ post.readTime }}</span>\n                  </div>\n                  <p class=\"mt-1.5 text-sm leading-snug font-medium\">{{ post.title }}</p>\n                </a>\n                <Separator v-if=\"index < recent.length - 1\" />\n              </li>\n            </ul>\n          </CardContent>\n        </Card>\n      </div>\n\n      <div class=\"border-border mt-8 flex flex-wrap items-center justify-between gap-4 border-t pt-6\">\n        <p class=\"text-muted-foreground text-sm\">New writing roughly every other week. No newsletter required.</p>\n        <Button variant=\"outline\">\n          View all resources\n          <ArrowRight class=\"ml-2 size-4\" aria-hidden=\"true\" />\n        </Button>\n      </div>\n    </div>\n  </section>\n</template>\n",
      "type": "registry:block",
      "target": "~/app/components/blocks/ResourcesTeaserGrid.vue"
    }
  ],
  "dependencies": [
    "lucide-vue-next"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/vue/avatar.json",
    "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": "Blog and resources teaser: one featured article spanning two columns with kind badge and read time, beside a stacked list of four recent pieces, closing on a view-all link row.",
  "categories": [
    "marketing"
  ]
}