About Statement Card

About section on a soft muted card with a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, a logos strip, and a four-column stats band.

PRO

About58: About Statement Card

About section housed entirely inside one soft muted card: a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, an auto-scrolling logo marquee, and a four-column stats band.

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

Base UI flavor

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

This installs the block to components/beste/block/about58.tsx, the badge7 component it uses for the eyebrow and the logos caption, and its dependencies.

Quick start

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

tsx
import { About58, about58Demo } from "@/components/beste/block/about58";

export default function Page() {
  return <About58 {...about58Demo} />;
}

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

tsx
import { About58 } from "@/components/beste/block/about58";

export default function Page() {
  return (
    <About58
      badge={{ label: "Our studio" }}
      labels={{ logosCaption: "The teams we build alongside" }}
      wordmark="Auralis"
      heading="We're Auralis, an independent design studio shaping <strong>calm, confident brands.</strong>"
      logos={[
        { src: "https://oud.pics/sm/l/logoipsum-380.png", alt: "Logoipsum" },
        { src: "https://oud.pics/sm/l/logoipsum-388.png", alt: "Logoipsum" },
        { src: "https://oud.pics/sm/l/logoipsum-395.png", alt: "Logoipsum" },
      ]}
      stats={[
        { value: "12yr", title: "Designing alongside founders since 2014." },
        { value: "140+", title: "Brands taken from first sketch to launch." },
        { value: "30", title: "Industry honors for our craft and care." },
        { value: "96%", title: "Of clients return for the next chapter." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Top eyebrow rendered in a Badge7
labelsAbout58Labels{}Optional string overrides; currently just logosCaption
wordmarkstringLarge studio wordmark below the eyebrow
headingstringCentered statement; supports inline HTML (<strong>, entities)
logosLogoItem[][]Logos rendered in the auto-scrolling marquee
statsStatItem[][]Four-column stats band at the bottom
classNamestringExtra classes for the outer <section>
ts
type About58Labels = { logosCaption?: string };
type LogoItem = { src: string; alt: string };
type StatItem = { value: string; title: string };

Behavior notes

More About blocks

View all About
PRO

about42

Framed Studio Card

About composed inside a bordered studio card with header marks, portrait and a stats strip.

PRO

about59

About Statement With Pillars

Centered parenthetical eyebrow and a large statement heading, followed by a three-up row of icon pillars pairing a circular icon with a title and one-line description.

PRO

about39

Numeral About

About anchored by an oversized numeral with a paragraph and a horizontal image strip.

PRO

about46

About Strip

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

PRO

about33

About With Stats Band

About section with an eyebrow label and read-more action on the left, a bold heading with two side-by-side images on the right, and a four-column stats band below.

PRO

about61

Belief Statement Values

Two-column about section with a sticky eyebrow and big heading on the left and a long belief paragraph above a border-separated values list on the right.