{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ecommerce-ecommerce-trust-guarantee-highlighted-quote","type":"registry:block","title":"Highlighted Quote","files":[{"path":"components/blocks/ecommerce/ecommerce-trust-guarantee/highlighted-quote.tsx","content":"import { Quote } from \"lucide-react\";\n\ninterface TrustGuaranteeHighlightedQuoteProps {\n  quote: string;\n  author?: string;\n  role?: string;\n}\n\nexport default function TrustGuaranteeHighlightedQuote({\n  quote = \"We stand behind every order — or your money back.\",\n  author,\n  role,\n}: TrustGuaranteeHighlightedQuoteProps) {\n  return (\n    <section className=\"px-4 py-8 md:py-12\">\n      <div className=\"mx-auto max-w-4xl text-center\">\n        <div className=\"relative\">\n          {/* Quote Icon */}\n          <Quote className=\"text-muted-foreground/40 mx-auto mb-6 h-8 w-8\" />\n\n          {/* Main Quote */}\n          <blockquote className=\"text-foreground text-2xl leading-relaxed font-medium sm:text-3xl lg:text-4xl\">\n            &quot;{quote}&quot;\n          </blockquote>\n\n          {/* Author Attribution */}\n          {(author || role) && (\n            <footer className=\"mt-8\">\n              <div className=\"text-muted-foreground flex items-center justify-center gap-2 text-sm\">\n                {author && (\n                  <cite className=\"text-foreground font-medium not-italic\">\n                    {author}\n                  </cite>\n                )}\n                {author && role && (\n                  <span className=\"text-muted-foreground\">•</span>\n                )}\n                {role && <span>{role}</span>}\n              </div>\n            </footer>\n          )}\n        </div>\n      </div>\n    </section>\n  );\n}\n","type":"registry:component","target":"components/blocks/ecommerce/ecommerce-trust-guarantee/highlighted-quote.tsx"}],"description":"A large pull quote with author name and star rating that features a happy customer. Drop it near pricing to back your claims with real social proof.","dependencies":["lucide-react"]}