{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-stats-impact-numbers","type":"registry:block","title":"Impact Numbers","files":[{"path":"components/blocks/marketing/stats/impact-numbers.tsx","content":"import { Badge } from '@/components/ui/badge';\nimport { Card, CardContent } from '@/components/ui/card';\nimport { cn } from '@/lib/utils';\nimport {\n  ArrowRight,\n  ArrowUpRight,\n  Clock,\n  DollarSign,\n  LineChart,\n  PieChart,\n  Target,\n  Zap,\n} from 'lucide-react';\n\ntype ImpactStat = {\n  id: string;\n  value: string;\n  prefix?: string;\n  suffix?: string;\n  label: string;\n  description: string;\n  icon: React.ReactNode;\n};\n\nconst impactStats: ImpactStat[] = [\n  {\n    id: 'roi',\n    value: '437',\n    prefix: '',\n    suffix: '%',\n    label: 'Average ROI',\n    description: 'Return on investment for businesses using our platform',\n    icon: <LineChart className=\"text-primary h-8 w-8\" />,\n  },\n  {\n    id: 'revenue',\n    value: '2.4',\n    prefix: '$',\n    suffix: 'B+',\n    label: 'Revenue Generated',\n    description: 'Total revenue generated for our customers',\n    icon: <DollarSign className=\"h-8 w-8 text-emerald-500\" />,\n  },\n  {\n    id: 'conversion',\n    value: '89',\n    suffix: '%',\n    label: 'Conversion Increase',\n    description: 'Average lift in conversion rates after implementation',\n    icon: <PieChart className=\"h-8 w-8 text-blue-500\" />,\n  },\n  {\n    id: 'time',\n    value: '60',\n    suffix: '%',\n    label: 'Time Saved',\n    description: 'Average reduction in manual workload for marketing teams',\n    icon: <Clock className=\"h-8 w-8 text-amber-500\" />,\n  },\n  {\n    id: 'growth',\n    value: '3.7',\n    suffix: 'x',\n    label: 'Customer Growth',\n    description: 'Average growth in customer base year-over-year',\n    icon: <Target className=\"h-8 w-8 text-purple-500\" />,\n  },\n  {\n    id: 'efficiency',\n    value: '83',\n    suffix: '%',\n    label: 'Marketing Efficiency',\n    description: 'Improvement in marketing efficiency across channels',\n    icon: <Zap className=\"h-8 w-8 text-rose-500\" />,\n  },\n];\n\nexport default function ImpactNumbers() {\n  return (\n    <div className=\"relative container mx-auto overflow-hidden px-4 py-24 md:px-6 lg:py-32 2xl:max-w-[1400px]\">\n      {/* Background gradient */}\n      <div className=\"from-primary/5 to-background pointer-events-none absolute inset-0 bg-gradient-to-br\" />\n\n      <div className=\"relative mx-auto max-w-5xl\">\n        <div className=\"mb-12 text-center\">\n          <Badge className=\"mb-4\">Proven Results</Badge>\n          <h2 className=\"mb-4 text-3xl font-bold md:text-5xl\">\n            Transforming Businesses <br className=\"hidden md:inline\" />\n            With Real Numbers\n          </h2>\n          <p className=\"text-muted-foreground mx-auto max-w-3xl text-lg\">\n            Our platform delivers measurable impact for businesses of all sizes.\n            See the difference in black and white.\n          </p>\n        </div>\n\n        {/* Impact Numbers Grid */}\n        <div className=\"mb-12 grid gap-6 md:grid-cols-2 lg:grid-cols-3\">\n          {impactStats.map((stat) => (\n            <Card\n              key={stat.id}\n              className={cn('overflow-hidden p-0', 'bg-card border')}\n            >\n              <CardContent className=\"p-6 md:p-8\">\n                <div className=\"mb-6\">{stat.icon}</div>\n\n                <div className=\"mb-2 flex items-end\">\n                  {stat.prefix && (\n                    <span className=\"mr-1 mb-1 text-2xl font-bold\">\n                      {stat.prefix}\n                    </span>\n                  )}\n                  <h3 className=\"text-4xl font-bold tracking-tight md:text-5xl\">\n                    {stat.value}\n                  </h3>\n                  {stat.suffix && (\n                    <span className=\"mb-1 ml-1 text-2xl font-bold\">\n                      {stat.suffix}\n                    </span>\n                  )}\n                </div>\n\n                <div className=\"mb-4 text-xl font-semibold\">{stat.label}</div>\n                <p className=\"text-muted-foreground\">{stat.description}</p>\n              </CardContent>\n            </Card>\n          ))}\n        </div>\n\n        {/* Industry comparison */}\n        <div className=\"bg-muted mb-16 rounded-xl p-8\">\n          <div className=\"grid items-center gap-8 md:grid-cols-2 md:gap-16\">\n            <div>\n              <h3 className=\"mb-4 text-2xl font-bold\">\n                How Does This Compare?\n              </h3>\n              <p className=\"text-muted-foreground mb-6\">\n                Our platform delivers results that are 4x better than industry\n                averages across all key performance indicators.\n              </p>\n              <div className=\"space-y-4\">\n                <div className=\"flex items-center gap-4\">\n                  <div className=\"bg-muted-foreground/20 h-2 w-full overflow-hidden rounded-full\">\n                    <div className=\"bg-muted-foreground h-full w-[24%]\" />\n                  </div>\n                  <span className=\"min-w-[60px] text-sm font-medium\">\n                    Industry\n                  </span>\n                </div>\n                <div className=\"flex items-center gap-4\">\n                  <div className=\"bg-primary/20 h-2 w-full overflow-hidden rounded-full\">\n                    <div className=\"bg-primary h-full w-[89%]\" />\n                  </div>\n                  <span className=\"min-w-[60px] text-sm font-medium\">\n                    Our Platform\n                  </span>\n                </div>\n              </div>\n            </div>\n            <div className=\"flex flex-col gap-4 text-center md:border-l md:pl-16 md:text-left\">\n              <div>\n                <div className=\"text-muted-foreground text-sm\">\n                  INDUSTRY AVERAGE\n                </div>\n                <div className=\"text-3xl font-bold\">24%</div>\n              </div>\n              <div className=\"flex h-12 items-center justify-center md:justify-start\">\n                <ArrowUpRight className=\"text-primary h-8 w-8\" />\n              </div>\n              <div>\n                <div className=\"text-primary text-sm font-medium\">\n                  OUR PLATFORM\n                </div>\n                <div className=\"text-primary text-4xl font-bold\">89%</div>\n              </div>\n            </div>\n          </div>\n        </div>\n\n        {/* CTA */}\n        <div className=\"text-center\">\n          <h3 className=\"mb-6 text-2xl font-bold\">\n            Ready to See These Results in Your Business?\n          </h3>\n          <div className=\"flex flex-wrap justify-center gap-4\">\n            <a\n              href=\"#\"\n              className=\"bg-primary text-primary-foreground hover:bg-primary/90 inline-flex items-center justify-center gap-2 rounded-md px-8 py-3 text-sm font-medium shadow\"\n            >\n              Get Started\n              <ArrowRight className=\"h-4 w-4\" />\n            </a>\n            <a\n              href=\"#\"\n              className=\"border-input bg-background hover:bg-accent hover:text-accent-foreground inline-flex items-center justify-center rounded-md border px-8 py-3 text-sm font-medium shadow-sm\"\n            >\n              View Case Studies\n            </a>\n          </div>\n        </div>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/stats/impact-numbers.tsx"},{"path":"components/ui/badge.tsx","content":"import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport { Slot } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst badgeVariants = cva(\n  \"group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!\",\n  {\n    variants: {\n      variant: {\n        default: \"bg-primary text-primary-foreground [a]:hover:bg-primary/80\",\n        secondary:\n          \"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80\",\n        destructive:\n          \"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20\",\n        outline:\n          \"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground\",\n        ghost:\n          \"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50\",\n        link: \"text-primary underline-offset-4 hover:underline\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n    },\n  }\n)\n\nfunction Badge({\n  className,\n  variant = \"default\",\n  asChild = false,\n  ...props\n}: React.ComponentProps<\"span\"> &\n  VariantProps<typeof badgeVariants> & { asChild?: boolean }) {\n  const Comp = asChild ? Slot.Root : \"span\"\n\n  return (\n    <Comp\n      data-slot=\"badge\"\n      data-variant={variant}\n      className={cn(badgeVariants({ variant }), className)}\n      {...props}\n    />\n  )\n}\n\nexport { Badge, badgeVariants }\n","type":"registry:ui","target":"components/ui/badge.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":"Oversized counters that animate upward as the section scrolls into view. Use it to make reach, users, or revenue feel bold and immediate to readers.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}