Numbered Services List

A services section with an eyebrow over a hairline rule, a two-column heading, and an editorial list of monospace-numbered service rows split into title and description.

PRO

Agency23: Numbered Services List

A light-weight services section: an eyebrow over a hairline rule, a two-column heading/description split, and a monospace-numbered editorial list of services with title and description columns.

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

Base UI flavor

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

This installs the block to components/beste/block/agency23.tsx, the badge23 component it uses for the eyebrow, and its dependencies.

Quick start

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

tsx
import { Agency23, agency23Demo } from "@/components/beste/block/agency23";

export default function ServicesPage() {
  return <Agency23 {...agency23Demo} />;
}

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

tsx
import { Agency23 } from "@/components/beste/block/agency23";

export default function ServicesPage() {
  return (
    <Agency23
      badge={{ label: "White glove" }}
      heading="The parts you'd rather not do, handled by our team"
      description="Switching systems is the scary bit. Our team carries it for you."
      items={[
        {
          title: "Migration & setup",
          description: "We move your records across and check every one before you go live.",
        },
        {
          title: "Training & rollout",
          description: "Short, role-specific sessions get your team confident in an afternoon.",
        },
        {
          title: "Ongoing partnership",
          description: "A named contact stays with you after launch to tune workflows.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow rendered in Badge23; hidden entirely when omitted
headingstringLeft half of the two-column header
descriptionstringRight-aligned copy in the header's second column
itemsService[][]Numbered service rows
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type Service = { title: string; description: string };

Behavior notes

More Agency blocks

View all Agency
PRO

agency21

Capabilities Accordion

Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.

PRO

agency15

Awards List

Editorial list of studio awards by year with project and recognition details.

PRO

agency22

Horizontal Process Timeline

A connected left-to-right sequence of numbered project phases with a ruled timeline and step dots.

PRO

agency14

Studio Team

A studio team grid of member portraits with names and roles.

PRO

agency12

Studio Values

Studio values laid out with oversized ghost numerals, titles, descriptions and keywords.

PRO

agency19

Why Polaris

A two-column comparison contrasting the Polaris way with a typical agency.