{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "resources-featured-list",
  "title": "Resources — Featured List",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-vue/blocks/resources-featured-list/ResourcesFeaturedList.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: 'Benchmark',\n  title: 'What close speed actually looks like across 240 finance teams',\n  excerpt:\n    'We asked every customer for their close calendar before and after rollout, then threw out the ones who changed headcount mid-period. What is left is 186 teams and a distribution that is wider than any vendor page admits.',\n  date: 'Mar 04, 2026',\n  read: '11 min',\n  author: { name: 'Anna Reyes', role: 'Data Lead', initials: 'AR' },\n}\n\nconst further = [\n  { title: 'Why we version metric definitions instead of dashboards', kind: 'Essay', date: 'Feb 18', read: '9 min' },\n  { title: 'Query planning against three warehouses at once', kind: 'Deep dive', date: 'Feb 02', read: '14 min' },\n  { title: 'A reconciliation checklist for your first close', kind: 'Guide', date: 'Jan 21', read: '6 min' },\n  {\n    title: 'Self-serve analytics fails for reasons that are not technical',\n    kind: 'Opinion',\n    date: 'Jan 09',\n    read: '7 min',\n  },\n  { title: 'What our audit log actually records, field by field', kind: 'Reference', date: 'Dec 15', read: '5 min' },\n]\n</script>\n\n<template>\n  <section data-slot=\"resources-featured-list\" 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>\n          <Badge variant=\"secondary\">Reading</Badge>\n          <h2 class=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">Start here</h2>\n        </div>\n        <Button variant=\"link\" class=\"h-auto p-0 text-sm\">\n          All writing\n          <ArrowRight class=\"ml-1.5 size-3.5\" aria-hidden=\"true\" />\n        </Button>\n      </div>\n\n      <div class=\"mt-10 grid gap-10 lg:grid-cols-[1.1fr_1fr] lg:gap-16\">\n        <Card class=\"group\">\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.read }}</span>\n            </div>\n            <h3 class=\"mt-4 text-2xl leading-snug font-semibold tracking-tight text-balance\">{{ featured.title }}</h3>\n            <p class=\"text-muted-foreground mt-3 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        <div>\n          <p class=\"text-muted-foreground font-mono text-xs tracking-[0.14em] uppercase\">Further reading</p>\n          <ol class=\"mt-4\">\n            <li v-for=\"(entry, index) in further\" :key=\"entry.title\">\n              <a\n                href=\"#\"\n                class=\"hover:bg-muted focus-visible:ring-ring group -mx-3 flex items-start gap-4 rounded-lg px-3 py-3 transition-colors focus-visible:ring-2 focus-visible:outline-none\"\n              >\n                <span class=\"text-muted-foreground/70 mt-0.5 shrink-0 font-mono text-xs\">\n                  {{ String(index + 1).padStart(2, '0') }}\n                </span>\n                <span class=\"min-w-0 flex-1\">\n                  <span class=\"block text-sm leading-snug\">{{ entry.title }}</span>\n                  <span class=\"text-muted-foreground mt-1 block font-mono text-xs\">\n                    {{ entry.kind }} · {{ entry.date }} · {{ entry.read }}\n                  </span>\n                </span>\n                <ArrowUpRight\n                  class=\"text-muted-foreground mt-0.5 size-3.5 shrink-0 transition-transform group-hover:translate-x-0.5 group-hover:-translate-y-0.5\"\n                  aria-hidden=\"true\"\n                />\n              </a>\n              <Separator v-if=\"index < further.length - 1\" />\n            </li>\n          </ol>\n        </div>\n      </div>\n    </div>\n  </section>\n</template>\n",
      "type": "registry:block",
      "target": "~/app/components/blocks/ResourcesFeaturedList.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": "Editorial resource layout pairing one featured long-read with a numbered list of further reading, each entry carrying its kind, date, and read time.",
  "categories": [
    "marketing"
  ]
}