{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-stats-growth-timeline","type":"registry:block","title":"Growth Timeline","files":[{"path":"components/blocks/marketing/stats/growth-timeline.tsx","content":"import { Badge } from '@/components/ui/badge';\nimport { cn } from '@/lib/utils';\nimport {\n  Activity,\n  ArrowRight,\n  Award,\n  BarChart,\n  CalendarDays,\n  Users,\n} from 'lucide-react';\n\ntype Milestone = {\n  id: string;\n  year: string;\n  title: string;\n  description: string;\n  metric: {\n    value: string;\n    label: string;\n  };\n  icon: React.ReactNode;\n};\n\nconst milestones: Milestone[] = [\n  {\n    id: 'launch',\n    year: '2018',\n    title: 'Company Founded',\n    description: 'Started with a small team of 5 passionate individuals',\n    metric: {\n      value: '5',\n      label: 'Team Members',\n    },\n    icon: <CalendarDays className=\"h-8 w-8\" />,\n  },\n  {\n    id: 'first-customers',\n    year: '2019',\n    title: 'First 100 Customers',\n    description: 'Achieved product-market fit and began scaling operations',\n    metric: {\n      value: '100+',\n      label: 'Early Adopters',\n    },\n    icon: <Users className=\"h-8 w-8\" />,\n  },\n  {\n    id: 'series-a',\n    year: '2020',\n    title: 'Series A Funding',\n    description: 'Secured $8M in funding to accelerate growth and development',\n    metric: {\n      value: '$8M',\n      label: 'Raised',\n    },\n    icon: <BarChart className=\"h-8 w-8\" />,\n  },\n  {\n    id: 'expansion',\n    year: '2021',\n    title: 'International Expansion',\n    description: 'Expanded to 12 countries across Europe, Asia, and Australia',\n    metric: {\n      value: '12',\n      label: 'Countries',\n    },\n    icon: <Activity className=\"h-8 w-8\" />,\n  },\n  {\n    id: 'acquisition',\n    year: '2022',\n    title: 'Strategic Acquisition',\n    description: 'Acquired leading analytics provider to enhance our platform',\n    metric: {\n      value: '2x',\n      label: 'Product Growth',\n    },\n    icon: <Award className=\"h-8 w-8\" />,\n  },\n  {\n    id: 'unicorn',\n    year: '2023',\n    title: 'Unicorn Status',\n    description:\n      'Reached $1B valuation with 10,000+ enterprise customers worldwide',\n    metric: {\n      value: '10K+',\n      label: 'Enterprise Clients',\n    },\n    icon: <Award className=\"h-8 w-8\" />,\n  },\n];\n\nexport default function GrowthTimeline() {\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-5xl\">\n        <div className=\"mb-16 text-center\">\n          <Badge className=\"mb-4\">Our Journey</Badge>\n          <h2 className=\"mb-4 text-3xl font-bold md:text-5xl\">\n            Growing From Startup to Industry Leader\n          </h2>\n          <p className=\"text-muted-foreground mx-auto max-w-3xl text-lg\">\n            Track our exponential growth journey from a small startup to\n            becoming the market leader.\n          </p>\n        </div>\n\n        {/* Timeline */}\n        <div className=\"relative mt-24\">\n          {/* Timeline line */}\n          <div className=\"bg-border absolute top-0 bottom-0 left-0 w-px transform md:left-1/2 md:-translate-x-1/2\" />\n\n          {/* Timeline items */}\n          <div className=\"relative space-y-12 md:space-y-24\">\n            {milestones.map((milestone, index) => (\n              <div\n                key={milestone.id}\n                className={cn(\n                  'flex flex-col gap-8 md:flex-row md:gap-0',\n                  index % 2 === 0 ? 'md:flex-row' : 'md:flex-row-reverse'\n                )}\n              >\n                {/* Content */}\n                <div className=\"ml-6 flex flex-col items-start md:ml-0 md:w-1/2 md:px-8\">\n                  <div className=\"bg-muted mb-4 inline-flex h-9 w-20 items-center justify-center rounded-full text-sm font-semibold\">\n                    {milestone.year}\n                  </div>\n                  <h3 className=\"mb-2 text-xl font-bold\">{milestone.title}</h3>\n                  <p className=\"text-muted-foreground mb-4\">\n                    {milestone.description}\n                  </p>\n\n                  <div className=\"bg-background flex items-center gap-4 rounded-lg border p-4 shadow-sm\">\n                    <div className=\"bg-primary/10 flex h-16 w-16 items-center justify-center rounded-full\">\n                      {milestone.icon}\n                    </div>\n                    <div>\n                      <div className=\"text-primary text-3xl font-bold\">\n                        {milestone.metric.value}\n                      </div>\n                      <div className=\"text-muted-foreground text-sm\">\n                        {milestone.metric.label}\n                      </div>\n                    </div>\n                  </div>\n                </div>\n\n                {/* Timeline point */}\n                <div className=\"absolute left-0 flex -translate-x-1/2 transform items-center justify-center md:left-1/2\">\n                  <div className=\"border-background bg-primary h-5 w-5 rounded-full border-4\" />\n                </div>\n              </div>\n            ))}\n          </div>\n        </div>\n\n        {/* Current stats */}\n        <div className=\"bg-muted mt-24 rounded-lg p-8\">\n          <h3 className=\"mb-6 text-center text-2xl font-bold\">\n            Where We Are Today\n          </h3>\n          <div className=\"grid grid-cols-2 gap-8 md:grid-cols-4\">\n            <div className=\"text-center\">\n              <div className=\"text-primary mb-2 text-3xl font-bold md:text-4xl\">\n                $1B+\n              </div>\n              <p className=\"text-muted-foreground font-medium\">\n                Company Valuation\n              </p>\n            </div>\n            <div className=\"text-center\">\n              <div className=\"text-primary mb-2 text-3xl font-bold md:text-4xl\">\n                180+\n              </div>\n              <p className=\"text-muted-foreground font-medium\">Team Members</p>\n            </div>\n            <div className=\"text-center\">\n              <div className=\"text-primary mb-2 text-3xl font-bold md:text-4xl\">\n                24\n              </div>\n              <p className=\"text-muted-foreground font-medium\">Countries</p>\n            </div>\n            <div className=\"text-center\">\n              <div className=\"text-primary mb-2 text-3xl font-bold md:text-4xl\">\n                12K+\n              </div>\n              <p className=\"text-muted-foreground font-medium\">\n                Global Customers\n              </p>\n            </div>\n          </div>\n        </div>\n\n        {/* Future */}\n        <div className=\"mt-16 text-center\">\n          <h3 className=\"mb-4 text-2xl font-bold\">\n            The Future Is Even Brighter\n          </h3>\n          <p className=\"text-muted-foreground mx-auto mb-8 max-w-2xl\">\n            We&apos;re just getting started. Our roadmap includes expansion to\n            new markets, enhanced product offerings, and continued innovation to\n            serve our growing customer base.\n          </p>\n          <a\n            href=\"#\"\n            className=\"text-primary inline-flex items-center font-medium hover:underline\"\n          >\n            View our roadmap\n            <ArrowRight className=\"ml-2 h-4 w-4\" />\n          </a>\n        </div>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/stats/growth-timeline.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"}],"description":"A vertical timeline pairing dates with the numbers you hit at each stage. Use it to chart company momentum on an about page or investor deck.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}