Services With Published Starting PricesPRO

A hairline service list that puts the starting price on the page, each row carrying the engagement name with its duration underneath, one line of scope, and the figure aligned right.

Agency25: Services With Published Starting Prices

A hairline service list that puts the starting price on the page, each row carrying the engagement name with its duration underneath, one line of scope, and the figure aligned right.

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.

Upgrade Now

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

Base UI flavor

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

This installs the block to components/beste/block/agency25.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).

Quick start

The installed file exports agency25Demo alongside the block: the exact props behind the preview above. Spread it to get a working service list in one line.

tsx
import { Agency25, agency25Demo } from "@/components/beste/block/agency25";

export default function ServicesPage() {
  return <Agency25 {...agency25Demo} />;
}

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

tsx
import { Agency25 } from "@/components/beste/block/agency25";

export default function ServicesPage() {
  return (
    <Agency25
      eyebrow="What we take on"
      heading="Four kinds of work, priced in the open"
      description="These are starting prices, not estimates."
      services={[
        {
          name: "Brand foundations",
          description: "Positioning, name, voice and an identity one person can hold.",
          duration: "6 to 8 weeks",
          price: "From £24,000",
          href: "/services/brand",
        },
      ]}
      note="We take on six projects a year."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph
servicesServiceRow[][]One linked row per engagement
notestringSingle line under the list
classNamestringExtra classes for the outer section
ts
type ServiceRow = {
  name: string;
  description: string;
  duration: string;
  price: string;
  href: string;
};

Behavior notes

More Agency blocks

View all Agency
PRO

agency23

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

agency22

Horizontal Process Timeline

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

PRO

agency21

Capabilities Accordion

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

PRO

agency17

Principles Selector

Interactive principle list that swaps a detail panel with image as each is hovered.

PRO

agency14

Studio Team

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

PRO

agency20

Clients & Outcomes

Client logo cloud paired with measurable engagement outcomes.

Markdown version