{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"portfolio-portfolio-awards-and-recognition-quote-award-combo","type":"registry:block","title":"Quote Award Combo","files":[{"path":"components/blocks/portfolio/portfolio-awards-and-recognition/quote-award-combo.tsx","content":"import { Trophy, Award, Medal } from 'lucide-react';\n\nexport default function AwardsAndRecognitionQuoteCombo() {\n  const awards = [\n    {\n      name: 'Digital Innovation Award',\n      organization: 'Creative Technology Foundation',\n      year: '2023',\n      quote:\n        'Sets new standards for what a modern digital experience can achieve. Exceptional technical implementation paired with creative vision.',\n      judge: 'Sarah Johnson',\n      judgeTitle: 'Head of Jury, Digital Innovation Awards',\n      icon: <Trophy className=\"h-6 w-6\" />,\n      link: '#',\n    },\n    {\n      name: 'Excellence in UX Design',\n      organization: 'UX Design Association',\n      year: '2022',\n      quote:\n        'A masterclass in user-centered design. Every interaction has been thoughtfully crafted with the end-user in mind.',\n      judge: 'Michael Chen',\n      judgeTitle: 'UX Design Director, Tech Innovations',\n      icon: <Award className=\"h-6 w-6\" />,\n      link: '#',\n    },\n    {\n      name: 'Best Portfolio Website',\n      organization: 'Web Design Awards',\n      year: '2021',\n      quote:\n        'The perfect balance of aesthetics and functionality. This portfolio sets the creator apart as a true professional in their field.',\n      judge: 'Alexandra Rivera',\n      judgeTitle: 'Senior Creative Director, DesignStudio',\n      icon: <Medal className=\"h-6 w-6\" />,\n      link: '#',\n    },\n  ];\n\n  return (\n    <section className=\"py-16 md:py-24\">\n      <div className=\"container mx-auto px-4 md:px-6 2xl:max-w-[1400px]\">\n        {/* Header */}\n        <div className=\"mb-16 text-center\">\n          <h2 className=\"mb-4 text-3xl font-bold tracking-tight sm:text-4xl md:text-5xl\">\n            Award Recognition\n          </h2>\n          <p className=\"text-muted-foreground mx-auto max-w-3xl text-lg\">\n            What industry experts have said about my award-winning work.\n          </p>\n        </div>\n\n        {/* Awards with Quotes */}\n        <div className=\"mx-auto grid max-w-5xl gap-8 md:gap-12\">\n          {awards.map((award, index) => (\n            <div\n              key={index}\n              className={`bg-card relative overflow-hidden rounded-xl border p-8 shadow-sm ${\n                index === 0 ? 'md:p-10' : ''\n              }`}\n            >\n              {/* Award Info */}\n              <div className=\"mb-6 flex items-start justify-between gap-4\">\n                <div>\n                  <div className=\"text-muted-foreground text-sm font-medium\">\n                    {award.organization} • {award.year}\n                  </div>\n                  <h3 className=\"mt-1 text-xl font-bold md:text-2xl\">\n                    {award.name}\n                  </h3>\n                </div>\n                <div className=\"bg-primary/10 text-primary flex h-10 w-10 shrink-0 items-center justify-center rounded-full\">\n                  {award.icon}\n                </div>\n              </div>\n\n              {/* Quote */}\n              <div className=\"bg-muted relative mb-8 rounded-lg p-6\">\n                <blockquote className=\"italic\">\n                  &quot;{award.quote}&quot;\n                </blockquote>\n                <div className=\"mt-4 flex items-center\">\n                  <div className=\"\">\n                    <p className=\"font-medium\">{award.judge}</p>\n                    <p className=\"text-muted-foreground text-sm\">\n                      {award.judgeTitle}\n                    </p>\n                  </div>\n                </div>\n              </div>\n\n              {/* Link */}\n              <div className=\"text-right\">\n                <a\n                  href={award.link}\n                  className=\"text-primary text-sm font-medium hover:underline\"\n                >\n                  Learn more about this award\n                </a>\n              </div>\n            </div>\n          ))}\n        </div>\n\n        {/* Personal Reflection */}\n        <div className=\"bg-card mx-auto mt-16 max-w-3xl rounded-lg border p-8 text-center\">\n          <h3 className=\"mb-4 text-xl font-semibold\">My Reflection</h3>\n          <p className=\"text-muted-foreground\">\n            These awards represent not just recognition of my work, but\n            milestones in my professional journey. Each one has pushed me to\n            explore new techniques, refine my skills, and continue delivering\n            exceptional results for my clients. I&apos;m honored to have my work\n            recognized by these respected organizations.\n          </p>\n        </div>\n      </div>\n    </section>\n  );\n}\n","type":"registry:component","target":"components/blocks/portfolio/portfolio-awards-and-recognition/quote-award-combo.tsx"}],"description":"A block pairing a testimonial quote with an award badge side by side. Combines praise and recognition to build credibility on a portfolio page.","dependencies":["lucide-react"]}