Animated Stats & Value Cards

Side-by-side intro with animated number counters on scroll, expanding accent bars, and hover-lift value cards. For impact-driven companies.

PRO

About25: Animated Stats & Value Cards

Split intro (copy and CTAs on the left, a hero photo on the right) followed by a row of scroll-triggered animated number counters and a grid of hover-lift value cards. Built for impact-driven companies that want their stats to feel alive rather than static text.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/about25?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/about25?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/about25.tsx and the badge and button shadcn/ui primitives it depends on.

Quick start

The installed file exports about25Demo alongside the block: the exact props behind the preview above. Spread it to get a working about section in one line.

tsx
import { About25, about25Demo } from "@/components/beste/block/about25";

export default function AboutPage() {
  return <About25 {...about25Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { About25 } from "@/components/beste/block/about25";

export default function AboutPage() {
  return (
    <About25
      badge={{ label: "Who We Are", variant: "outline" }}
      heading="Building the future of sustainable energy"
      description="Engineers, scientists, and dreamers united by one mission."
      image={{
        src: "https://images.unsplash.com/photo-1497440001374-f26997328c1b?w=900&h=500&fit=crop",
        alt: "Solar panel array at sunset",
      }}
      stats={[
        { value: 12, suffix: "GW", label: "Clean Energy Delivered" },
        { value: 340, suffix: "+", label: "Communities Powered" },
      ]}
      values={[
        { title: "Radical Transparency", description: "Every watt visible in real time." },
        { title: "Community First", description: "We co-design every project locally." },
      ]}
      buttons={[{ label: "Our Projects", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Eyebrow badge above the heading
headingstringSection heading in the left column
descriptionstringLead paragraph in the left column
image{ src: string; alt: string }Photo in the right column
statsStatItem[][]Row of animated number counters below the intro
valuesValueItem[][]Hover-lift value cards below the stats
buttonsButtonItem[][]CTA row under the description
classNamestringExtra classes for the outer <section>
ts
type StatItem = { value: number; suffix?: string; prefix?: string; label: string };
type ValueItem = { title: string; description: string };

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

More About blocks

View all About
PRO

about46

About Strip

An about intro followed by a horizontally scrollable strip mixing image, stat, quote and values cards.

PRO

about14

Stats Bar with Story Card

Horizontal stats row at the top followed by a centered story card with heading, body text, and CTAs.

PRO

about28

Marquee Stats & Team Split

Full-width animated marquee stats ticker, split layout with intro text and leadership avatars on the left, full-height image on the right. For SaaS and product companies.

PRO

about27

Split Intro & Animated Timeline

Left intro with image, right vertical timeline with staggered scroll-reveal animation. Numbered steps with sliding content. For startup journeys.

PRO

about5

Image & Text Split

Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.

PRO

about8

Stats with Descriptions

Four-column stats grid with large numbers, titles, and supporting descriptions. Perfect for impact and results sections.