Mission & Trust Logos

Centered mission statement with a logo strip of trusted partners below. Ideal for building credibility on landing and about pages.

PRO

About9: Mission & Trust Logos

Centered about section that leads with a mission statement inside a muted panel, then a grayscale logo strip labelled by logosLabel, ending in a CTA row. Built to establish credibility through partner logos rather than team photography.

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

Base UI flavor

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

This installs the block to components/beste/block/about9.tsx, along with the shadcn/ui badge and button components it depends on.

Quick start

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

tsx
import { About9, about9Demo } from "@/components/beste/block/about9";

export default function AboutPage() {
  return <About9 {...about9Demo} />;
}

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

tsx
import { About9 } from "@/components/beste/block/about9";

export default function AboutPage() {
  return (
    <About9
      badge={{ label: "About Us", variant: "secondary" }}
      heading="Trusted by teams who care about quality"
      description="We partner with forward-thinking companies to build great interfaces."
      mission="Our mission is to give every developer the building blocks to create world-class experiences."
      logosLabel="Trusted by teams at"
      logos={[
        { src: "https://beste.co/logos/acme.svg", alt: "Acme" },
        { src: "https://beste.co/logos/northwind.svg", alt: "Northwind" },
        { src: "https://beste.co/logos/globex.svg", alt: "Globex" },
      ]}
      buttons={[{ label: "Get Started", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringSection heading
descriptionstringIntro paragraph under the heading
missionstringMission statement shown in its own muted panel
logosLogoItem[][]Partner/customer logos in the trust strip
logosLabelstringCaption above the logo strip
buttonsButtonItem[][]CTA row at the bottom
classNamestringExtra classes for the outer <section>
ts
type LogoItem = { 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

about57

Values And Mission Statement

Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.

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

about65

Centered Manifesto

Centered manifesto with a very large multi-line statement heading, muted emphasis phrases, a closing line, and a single CTA.

PRO

about16

Vision Mission Values

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

PRO

about48

Principles About

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

PRO

about6

Numbered Principles

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