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

About28: Marquee Stats & Team Split

A full-bleed, infinitely scrolling stats ticker sits above a split section: intro copy, body paragraph, and a leadership avatar row on the left, a full-height photo on the right. Built for SaaS and product companies with a longer list of headline numbers than a static row can comfortably hold.

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/about28?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { About28, about28Demo } from "@/components/beste/block/about28";

export default function AboutPage() {
  return <About28 {...about28Demo} />;
}

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

tsx
import { About28 } from "@/components/beste/block/about28";

export default function AboutPage() {
  return (
    <About28
      badge={{ label: "About Us", variant: "outline" }}
      heading="We design tools that respect your time"
      description="A small, focused team building software millions use every day."
      body="Founded in 2019 by former product designers and engineers who wanted less bloat."
      image={{
        src: "https://images.unsplash.com/photo-1497366216548-37526070297c?w=900&h=700&fit=crop",
        alt: "Modern workspace",
      }}
      stats={[
        { value: "2.4M", label: "Active Users" },
        { value: "99.99%", label: "Uptime" },
        { value: "42", label: "Team Members" },
      ]}
      team={[
        {
          name: "Maya Torres",
          role: "CEO & Co-founder",
          avatar: {
            src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=100&h=100&fit=crop",
            alt: "Maya Torres",
          },
        },
      ]}
      buttons={[{ label: "Open Positions", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Eyebrow badge above the heading
headingstringLeft-column section heading
descriptionstringLeft-column lead paragraph
bodystringLonger founding-story paragraph below the description
image{ src: string; alt: string }Full-height photo in the right column
statsStatItem[][]Entries looped into the top marquee ticker
teamTeamMember[][]Leadership avatar row below the body text
buttonsButtonItem[][]CTA row at the bottom of the left column
classNamestringExtra classes for the outer <section>
ts
type StatItem = { value: string; label: string };
type TeamMember = { name: string; role: string; avatar: { src: string; alt: string } };

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

Behavior notes

More About blocks

View all About
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

about21

Checklist & Image Split

Two-column layout with checklist highlights on the left, featured image and testimonial quote on the right, plus a full-width stats row.

PRO

about23

Story, Image & Team Row

Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.

PRO

about66

About with Stats Grid

Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.

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

about11

Hero Banner with Avatars

Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.