Mission Band With PrinciplesFREE

A company story section that runs a two-column heading over a wide photo band, then sets three founding principles as numbered hairline columns underneath.

About69: Mission Band With Principles

Company story section that runs a two-column heading over a wide photo band, then sets the founding principles as numbered hairline columns underneath, each one a short title and the reasoning behind it.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/about69"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/about69"

This installs the block to components/beste/block/about69.tsx plus the badge23 component it uses for the eyebrow.

Quick start

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

tsx
import { About69, about69Demo } from "@/components/beste/block/about69";

export default function AboutPage() {
  return <About69 {...about69Demo} />;
}

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

tsx
import { About69 } from "@/components/beste/block/about69";

export default function AboutPage() {
  return (
    <About69
      badge={{ label: "About" }}
      heading="Software for people who cannot afford a bad Tuesday"
      description="We started after a decade of watching good teams run on the wrong tools."
      image={{ src: "/images/team.jpg", alt: "The team around a laptop" }}
      items={[
        {
          title: "We sit behind the desk first",
          description: "Nothing ships until someone has watched it used on a busy morning.",
        },
        {
          title: "The record belongs to the practice",
          description: "Export everything, any time, in an open format.",
        },
        {
          title: "Quiet beats clever",
          description: "A feature that needs explaining is a feature that failed.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Monospace eyebrow above the hairline rule, rendered via Badge23
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
image{ src: string; alt: string }Wide photo band between the heading and the principles
itemsPrinciple[][]Principle columns under the photo
classNamestringExtra classes for the outer <section>
ts
type Principle = { title: string; description: string };

Behavior notes

More About blocks

View all About
PRO

about6

Numbered Principles

Asymmetric two-column layout with heading on the left and numbered company principles on the right. Clean and editorial.

PRO

about64

Principles Card Grid

Principles section with a header and a three-column grid of six bordered cards, each pairing a circular icon with a title and description.

PRO

about48

Principles About

About pairing a sticky studio statement and image with a numbered list of operating principles.

PRO

about1

Team & Mission

Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.

PRO

about16

Vision Mission Values

Three-column cards for vision, mission, and values with labeled headers. Clean editorial layout for company positioning.

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.