{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "resources-featured-list",
  "title": "Resources — Featured List",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/resources-featured-list/ResourcesFeaturedList.tsx",
      "content": "'use client'\n\nimport { Fragment } from 'react'\nimport { ArrowRight, ArrowUpRight } from 'lucide-react'\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\nexport function ResourcesFeaturedList() {\n  return (\n    <section data-slot=\"resources-featured-list\" className=\"bg-background\">\n      <div className=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n        <div className=\"flex flex-wrap items-end justify-between gap-6\">\n          <div>\n            <Badge variant=\"secondary\">Reading</Badge>\n            <h2 className=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">Start here</h2>\n          </div>\n          <Button variant=\"link\" className=\"h-auto p-0 text-sm\">\n            All writing\n            <ArrowRight className=\"ml-1.5 size-3.5\" aria-hidden=\"true\" />\n          </Button>\n        </div>\n\n        <div className=\"mt-10 grid gap-10 lg:grid-cols-[1.1fr_1fr] lg:gap-16\">\n          <Card className=\"group\">\n            <CardContent className=\"flex h-full flex-col p-6 lg:p-8\">\n              <div className=\"flex flex-wrap items-center gap-3\">\n                <Badge variant=\"outline\">{featured.kind}</Badge>\n                <span className=\"text-muted-foreground text-xs\">\n                  {featured.date} · {featured.read}\n                </span>\n              </div>\n              <h3 className=\"mt-4 text-2xl leading-snug font-semibold tracking-tight text-balance\">{featured.title}</h3>\n              <p className=\"text-muted-foreground mt-3 leading-relaxed\">{featured.excerpt}</p>\n\n              <div className=\"mt-auto flex items-center gap-3 pt-8\">\n                <Avatar className=\"size-9\">\n                  <AvatarFallback className=\"text-xs\">{featured.author.initials}</AvatarFallback>\n                </Avatar>\n                <div className=\"min-w-0\">\n                  <p className=\"truncate text-sm font-medium\">{featured.author.name}</p>\n                  <p className=\"text-muted-foreground truncate text-xs\">{featured.author.role}</p>\n                </div>\n                <Button variant=\"ghost\" size=\"sm\" className=\"ml-auto\">\n                  Read\n                  <ArrowUpRight\n                    className=\"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 className=\"text-muted-foreground font-mono text-xs tracking-[0.14em] uppercase\">Further reading</p>\n            <ol className=\"mt-4\">\n              {further.map((entry, index) => (\n                <Fragment key={entry.title}>\n                  <li>\n                    <a\n                      href=\"#\"\n                      className=\"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 className=\"text-muted-foreground/70 mt-0.5 shrink-0 font-mono text-xs\">\n                        {String(index + 1).padStart(2, '0')}\n                      </span>\n                      <span className=\"min-w-0 flex-1\">\n                        <span className=\"block text-sm leading-snug\">{entry.title}</span>\n                        <span className=\"text-muted-foreground mt-1 block font-mono text-xs\">\n                          {entry.kind} · {entry.date} · {entry.read}\n                        </span>\n                      </span>\n                      <ArrowUpRight\n                        className=\"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                  </li>\n                  {index < further.length - 1 && <Separator />}\n                </Fragment>\n              ))}\n            </ol>\n          </div>\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "~/components/blocks/ResourcesFeaturedList.tsx"
    }
  ],
  "dependencies": [
    "lucide-react"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/react/avatar.json",
    "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": "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"
  ]
}