{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-about-sections-achievements","type":"registry:block","title":"Achievements","files":[{"path":"components/blocks/marketing/about-sections/achievements.tsx","content":"import { Card, CardContent } from \"@/components/ui/card\";\nimport { Trophy, Users, Building, Globe } from \"lucide-react\";\n\nconst achievements = [\n  {\n    icon: Trophy,\n    stat: \"150+\",\n    title: \"Industry Awards\",\n    description: \"Recognized for excellence in design and innovation.\",\n  },\n  {\n    icon: Users,\n    stat: \"50,000+\",\n    title: \"Happy Clients\",\n    description: \"Helping businesses worldwide achieve their goals.\",\n  },\n  {\n    icon: Building,\n    stat: \"12\",\n    title: \"Global Offices\",\n    description: \"Local presence with international reach.\",\n  },\n  {\n    icon: Globe,\n    stat: \"24/7\",\n    title: \"Customer Support\",\n    description: \"Always available to help when you need us.\",\n  },\n];\n\nexport default function AboutSectionAchievements() {\n  return (\n    <section className=\"container mx-auto space-y-12 px-4 py-24 md:px-6 2xl:max-w-[1400px]\">\n      <div className=\"mx-auto max-w-3xl space-y-4 text-center\">\n        <h2 className=\"text-3xl font-bold\">Our Achievements</h2>\n        <p className=\"text-muted-foreground\">\n          Since our founding in 2010, we&apos;ve reached significant milestones\n          and earned the trust of clients across industries and continents.\n        </p>\n      </div>\n\n      <div className=\"grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-4\">\n        {achievements.map((item) => (\n          <Card key={item.title} className=\"p-0\">\n            <CardContent className=\"space-y-4 p-6 text-center\">\n              <div className=\"flex justify-center\">\n                <item.icon className=\"text-primary h-10 w-10\" />\n              </div>\n              <div>\n                <p className=\"text-3xl font-bold\">{item.stat}</p>\n                <h3 className=\"font-semibold\">{item.title}</h3>\n              </div>\n              <p className=\"text-muted-foreground text-sm\">\n                {item.description}\n              </p>\n            </CardContent>\n          </Card>\n        ))}\n      </div>\n\n      <div className=\"mx-auto max-w-2xl space-y-4 pt-8 text-center\">\n        <h3 className=\"text-xl font-bold\">Trusted by Leading Organizations</h3>\n        <p className=\"text-muted-foreground\">\n          Our solutions power businesses of all sizes, from innovative startups\n          to Fortune 500 companies across a wide range of industries.\n        </p>\n        <div className=\"grid grid-cols-2 gap-8 pt-6 opacity-75 sm:grid-cols-3 md:grid-cols-6\">\n          {[1, 2, 3, 4, 5, 6].map((i) => (\n            <div key={i} className=\"bg-muted h-8 rounded-md\"></div>\n          ))}\n        </div>\n      </div>\n    </section>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/about-sections/achievements.tsx"},{"path":"components/ui/card.tsx","content":"import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Card({\n  className,\n  size = \"default\",\n  ...props\n}: React.ComponentProps<\"div\"> & { size?: \"default\" | \"sm\" }) {\n  return (\n    <div\n      data-slot=\"card\"\n      data-size={size}\n      className={cn(\n        \"group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground shadow-xs ring-1 ring-foreground/10 has-[>img:first-child]:pt-0 data-[size=sm]:gap-4 data-[size=sm]:py-4 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardHeader({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-header\"\n      className={cn(\n        \"group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-6 group-data-[size=sm]/card:px-4 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-6 group-data-[size=sm]/card:[.border-b]:pb-4\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardTitle({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-title\"\n      className={cn(\n        \"font-heading text-base leading-normal font-medium group-data-[size=sm]/card:text-sm\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardDescription({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-description\"\n      className={cn(\"text-sm text-muted-foreground\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction CardAction({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-action\"\n      className={cn(\n        \"col-start-2 row-span-2 row-start-1 self-start justify-self-end\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardContent({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-content\"\n      className={cn(\"px-6 group-data-[size=sm]/card:px-4\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction CardFooter({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-footer\"\n      className={cn(\n        \"flex items-center rounded-b-xl px-6 group-data-[size=sm]/card:px-4 [.border-t]:pt-6 group-data-[size=sm]/card:[.border-t]:pt-4\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nexport {\n  Card,\n  CardHeader,\n  CardFooter,\n  CardTitle,\n  CardAction,\n  CardDescription,\n  CardContent,\n}\n","type":"registry:ui","target":"components/ui/card.tsx"}],"description":"A grid of awards and milestones with icons and short captions. Use it on an about page to prove credibility and show what your team has earned.","dependencies":["lucide-react"]}