{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "ratings-award-wall",
  "title": "Ratings — Award Wall",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-vue/blocks/ratings-award-wall/RatingsAwardWall.vue",
      "content": "<script setup lang=\"ts\">\nimport { Award } 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\n// Body, category, and period on every entry. A badge without a period is a\n// badge that could be six years old.\nconst awards = [\n  { body: 'G2', category: 'Leader — Analytics Platforms', period: 'Winter 2026' },\n  { body: 'G2', category: 'Best Usability — Mid-Market', period: 'Winter 2026' },\n  { body: 'Capterra', category: 'Best Value — Business Intelligence', period: '2025' },\n  { body: 'TrustRadius', category: 'Top Rated — Data Governance', period: '2025' },\n  { body: 'Product Hunt', category: '#1 Product of the Day', period: 'Mar 2025' },\n  { body: 'SaaS Awards', category: 'Best Data Product, shortlisted', period: '2025' },\n]\n</script>\n\n<template>\n  <section data-slot=\"ratings-award-wall\" 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\">Recognition</Badge>\n          <h2 class=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">Awarded, with the period attached</h2>\n          <p class=\"text-muted-foreground mt-3 text-lg\">\n            Every entry names who gave it, for what, and when. Nothing here is older than a year unless it says so.\n          </p>\n        </div>\n        <Button variant=\"outline\">See the review profiles</Button>\n      </div>\n\n      <div class=\"mt-10 grid gap-4 sm:grid-cols-2 lg:grid-cols-3\">\n        <Card v-for=\"award in awards\" :key=\"`${award.body}-${award.category}`\">\n          <CardContent class=\"flex h-full flex-col p-5\">\n            <div class=\"flex items-center gap-3\">\n              <span\n                class=\"border-border text-muted-foreground flex size-9 shrink-0 items-center justify-center rounded-lg border\"\n                aria-hidden=\"true\"\n              >\n                <Award class=\"size-4\" />\n              </span>\n              <p class=\"text-sm font-semibold\">{{ award.body }}</p>\n            </div>\n            <Separator class=\"my-4\" />\n            <p class=\"text-sm leading-snug\">{{ award.category }}</p>\n            <p class=\"text-muted-foreground mt-auto pt-3 font-mono text-xs\">{{ award.period }}</p>\n          </CardContent>\n        </Card>\n      </div>\n    </div>\n  </section>\n</template>\n",
      "type": "registry:block",
      "target": "~/app/components/blocks/RatingsAwardWall.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": "Grid of third-party awards, each naming the awarding body, the category, and the period it covers, so a badge wall stays checkable rather than decorative.",
  "categories": [
    "marketing"
  ]
}