{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ecommerce-ecommerce-customer-reviews-base","type":"registry:block","title":"Base","files":[{"path":"components/blocks/ecommerce/ecommerce-customer-reviews/base.tsx","content":"import { Star } from \"lucide-react\";\n\nexport default function Base() {\n  return (\n    <div className=\"container mx-auto px-4 py-24 md:px-6 lg:py-32 2xl:max-w-[1400px]\">\n      <div className=\"mx-auto max-w-4xl text-center\">\n        <h2 className=\"mb-8 text-3xl font-bold tracking-tight sm:text-4xl\">\n          What Our Customers Say\n        </h2>\n\n        <div className=\"bg-muted/50 rounded-lg p-8 md:p-12\">\n          <div className=\"mb-6 flex justify-center\">\n            {[...Array(5)].map((_, i) => (\n              <Star\n                key={i}\n                className=\"size-6 fill-yellow-400 text-yellow-400\"\n              />\n            ))}\n          </div>\n\n          <blockquote className=\"mb-6 text-xl leading-relaxed font-medium md:text-2xl\">\n            &quot;Exceptional product quality and customer service. The delivery\n            was fast and the items exceeded my expectations. I&apos;ll\n            definitely be shopping here again!&quot;\n          </blockquote>\n\n          <footer className=\"text-muted-foreground\">\n            <div className=\"text-foreground font-semibold\">Sarah Johnson</div>\n            <div>Verified Customer • Purchased 2 weeks ago</div>\n          </footer>\n        </div>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/ecommerce/ecommerce-customer-reviews/base.tsx"}],"description":"A starter customer review layout with star ratings, reviewer names, and comment text. Drop it onto a product page to show real shopper feedback fast.","dependencies":["lucide-react"]}