Getting Started
Templates
Blocks
Components
For solo developers, indie hackers, and freelancers shipping their own products. Pay once, keep everything forever.
Instant download · No subscription · Lifetime access
For small teams, agencies, and freelancers shipping multiple client products. Lifetime access for everyone on your team.
Instant CLI token for 5 seats · Onboarding included · Invoice on request
A scroll-triggered stats section featuring animated number counters powered by NumberFlow. Numbers animate into view when the section enters the viewport, creating an engaging way to showcase key metrics.
Key Features:
| Prop | Type | Default | Description |
|---|---|---|---|
stats | StatsCounterStat[] | 4 default stats | Array of stat objects to display |
title | string | "Trusted by teams worldwide" | Section heading text |
subtitle | string | "By the numbers" | Small uppercase text above title |
description | string | Default description | Text below the stats grid |
className | string | undefined | Additional CSS classes |
Each stat in the stats array accepts:
interface StatsCounterStat {
value: number // The number to animate to
suffix?: string // Text after the number (e.g., "+", "%", "K+")
label: string // Description below the number
delay?: number // Animation duration in ms (default: 1000)
}