{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "testimonials-09",
  "title": "Testimonials 09",
  "description": "A simple testimonials block",
  "files": [
    {
      "path": "src/registry/blocks/shared/testimonials-09/components/testimonials.tsx",
      "content": "const testimonials = [\n  {\n    name: \"Sarah Johnson\",\n    role: \"Product Designer at Canva\",\n    avatar: \"https://mockmind-api.uifaces.co/content/human/97.jpg\",\n    testimonial:\n      \"This product completely changed the way I work. The interface is intuitive and the performance is top-notch.\",\n  },\n  {\n    name: \"Daniel Kim\",\n    role: \"CTO at NextLaunch\",\n    avatar: \"https://mockmind-api.uifaces.co/content/human/80.jpg\",\n    testimonial:\n      \"We integrated this solution into our stack within days, and the benefits were immediate. Our team collaboration improved, deployment times dropped, and the analytics insights have helped us fine-tune performance at every level.\",\n  },\n  {\n    name: \"Emily Chen\",\n    role: \"Marketing Manager at HubSpot\",\n    avatar: \"https://mockmind-api.uifaces.co/content/human/113.jpg\",\n    testimonial:\n      \"I've worked with multiple marketing platforms over the years, but none have offered the kind of personalized experience and seamless integration that this one does. It has truly elevated our campaigns and improved our ROI.\",\n  },\n  {\n    name: \"Raj Mehta\",\n    role: \"Frontend Developer at Zomato\",\n    avatar: \"https://mockmind-api.uifaces.co/content/human/90.jpg\",\n    testimonial: \"Clean, fast, and reliable. Everything a dev could ask for.\",\n  },\n  {\n    name: \"Aisha Patel\",\n    role: \"Software Engineer at Swiggy\",\n    avatar: \"https://mockmind-api.uifaces.co/content/human/116.jpg\",\n    testimonial: \"Smooth and delightful experience!\",\n  },\n  {\n    name: \"Liam Garcia\",\n    role: \"Startup Founder\",\n    avatar: \"https://mockmind-api.uifaces.co/content/human/112.jpg\",\n    testimonial:\n      \"I've used dozens of tools in the past year alone, and this is one of the few I'd actually recommend to other founders. It doesn't just work — it works smart. Everything feels thoughtfully designed and built with care.\",\n  },\n];\n\nconst Testimonials = () => {\n  return (\n    <div className=\"mx-auto max-w-7xl px-6 py-12 sm:py-20\">\n      <h2 className=\"text-center font-medium text-4xl tracking-[-0.04em] md:text-[2.75rem]\">\n        Loved by Our Users\n      </h2>\n      <p className=\"mt-2 text-balance text-center text-lg text-muted-foreground tracking-[-0.015em] sm:mt-4 sm:text-2xl\">\n        Their experiences speak louder than words\n      </p>\n\n      <div className=\"mx-auto mt-16 max-w-5xl columns-1 gap-6 sm:columns-2 lg:columns-3\">\n        {testimonials.map(({ name, avatar, role, testimonial }, index) => (\n          <div\n            className=\"relative mb-6 flex break-inside-avoid flex-col rounded-lg border border-primary/20 bg-linear-to-br from-primary/20 to-primary/10 px-5 pt-10 pb-3\"\n            key={index}\n          >\n            {/* Quote */}\n            <span className=\"absolute top-0 left-4 select-none font-satoshi text-9xl text-primary/50\">\n              &ldquo;\n            </span>\n\n            <p className=\"grow py-6 font-medium text-lg\">{testimonial}</p>\n            <div className=\"mt-2 flex items-center gap-3 py-3.5 sm:mt-4\">\n              <img alt=\"\" className=\"size-12 rounded-full\" src={avatar} />\n              <div className=\"flex flex-col\">\n                <p className=\"font-medium\">{name}</p>\n                <p className=\"text-muted-foreground text-sm\">{role}</p>\n              </div>\n            </div>\n          </div>\n        ))}\n      </div>\n    </div>\n  );\n};\n\nexport default Testimonials;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}