{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "testimonials-marquee-block-01",
  "type": "registry:block",
  "registryDependencies": [
    "@ncdai/testimonials-marquee"
  ],
  "files": [
    {
      "path": "src/registry/examples/testimonials-marquee-demo-01.tsx",
      "content": "import {\n  Marquee,\n  MarqueeContent,\n  MarqueeFade,\n  MarqueeItem,\n} from \"@/components/kibo-ui/marquee\";\nimport {\n  Testimonial,\n  TestimonialAuthor,\n  TestimonialAuthorName,\n  TestimonialAuthorTagline,\n  TestimonialAvatar,\n  TestimonialAvatarImg,\n  TestimonialAvatarRing,\n  TestimonialQuote,\n  TestimonialVerifiedBadge,\n} from \"@/registry/testimonials-marquee\";\n\nexport default function TestimonialsMarqueeDemo1() {\n  return (\n    <div className=\"w-full bg-background\">\n      <Marquee className=\"border-y border-edge [&_.rfm-initial-child-container]:items-stretch! [&_.rfm-marquee]:items-stretch!\">\n        <MarqueeFade side=\"left\" />\n        <MarqueeFade side=\"right\" />\n\n        <MarqueeContent>\n          {TESTIMONIALS.map((item) => (\n            <MarqueeItem\n              key={item.url}\n              className=\"mx-0 h-full w-xs border-r border-edge\"\n            >\n              <a\n                href={item.url}\n                target=\"_blank\"\n                rel=\"noopener noreferrer\"\n                className=\"block h-full\"\n              >\n                <Testimonial>\n                  <TestimonialQuote>\n                    <p>{item.quote}</p>\n                  </TestimonialQuote>\n\n                  <TestimonialAuthor>\n                    <TestimonialAvatar>\n                      <TestimonialAvatarImg src={item.authorAvatar} />\n                      <TestimonialAvatarRing />\n                    </TestimonialAvatar>\n\n                    <TestimonialAuthorName>\n                      {item.authorName}\n                      <TestimonialVerifiedBadge />\n                    </TestimonialAuthorName>\n\n                    <TestimonialAuthorTagline>\n                      {item.authorTagline}\n                    </TestimonialAuthorTagline>\n                  </TestimonialAuthor>\n                </Testimonial>\n              </a>\n            </MarqueeItem>\n          ))}\n        </MarqueeContent>\n      </Marquee>\n    </div>\n  );\n}\n\nconst TESTIMONIALS = [\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1783856060249595904/8TfcCN0r_400x400.jpg\",\n    authorName: \"Guillermo Rauch\",\n    authorTagline: \"CEO @Vercel\",\n    url: \"https://x.com/rauchg/status/1978913158514237669\",\n    quote:\n      \"awesome. Love the components, especially slide-to-unlock. Great job\",\n  },\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1756766826736893952/6Gvg6jha_400x400.jpg\",\n    authorName: \"OrcDev\",\n    authorTagline: \"Creator of 8bitcn.com\",\n    url: \"https://x.com/theorcdev/status/1980378575170859446\",\n    quote:\n      \"Seriously, this is one of the best portfolio templates I've ever seen.\",\n  },\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1954573702768504833/LW-j7iTr_400x400.jpg\",\n    authorName: \"Sahaj\",\n    authorTagline: \"Creator of tweakcn.com\",\n    url: \"https://x.com/iamsahaj_xyz/status/1982814244501381239\",\n    quote:\n      \"remember seeing it on @mannupaaji's review. it's one of the best looking ones I've seen\",\n  },\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1923813473240203264/owJG92AC_400x400.jpg\",\n    authorName: \"Steven Tey\",\n    authorTagline: \"Founder @Dub.co\",\n    url: \"https://x.com/steventey/status/1936934909370830924\",\n    quote: \"whoa, this is really dope – needs to get added to @shadcn UI 👀\",\n  },\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1868745200010428416/jKSU2o_W_400x400.jpg\",\n    authorName: \"Kap\",\n    authorTagline: \"Head of Developer Community @Vercel\",\n    url: \"https://x.com/kapehe_ok/status/1948104774358106612\",\n    quote: \"one of my favorite projects that submitted! you are crushing it!\",\n  },\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1962676904013492224/crWj9Gfa_400x400.jpg\",\n    authorName: \"Jean P.D. Meijer\",\n    authorTagline: \"Building analog.now\",\n    url: \"https://x.com/initjean/status/1948159885960438151\",\n    quote:\n      \"congrats you deserve it! react wheel picker is so smooth, its insane 🐐\",\n  },\n  {\n    authorAvatar:\n      \"https://pbs.twimg.com/profile_images/1679831765744259073/hoVtsOZ9_400x400.jpg\",\n    authorName: \"GitHub Projects Community\",\n    authorTagline: \"UNOFFICIAL, but followed by @github\",\n    url: \"https://x.com/GithubProjects/status/1931034244337271044\",\n    quote:\n      \"Everything you'd want in a picker, minus the styling headaches. Awesome job!\",\n  },\n];\n",
      "type": "registry:component"
    }
  ]
}