Mission & Trust Logos

About Us

Trusted by teams who care about quality

We partner with forward-thinking companies to build interfaces that set new standards for usability and performance.

Our mission is simple: give every developer and designer the building blocks to create world-class digital experiences without starting from scratch. We obsess over accessibility, performance, and visual polish so you can focus on what makes your product unique.

Trusted by teams at

Adidas
Nike
Puma
Converse
About this block

Mission & Trust LogosPRO

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

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.

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/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

  • Logos render small at size-8 and are desaturated by default (opacity-50 grayscale), switching to full color and full opacity only on hover, so the strip stays visually quiet until a visitor interacts with it.
  • logosLabel is optional and only renders above the logo row when provided; without it the logos float with no caption.
  • The demo's logo images point at brand-mark URLs rather than Unsplash stock photography, since logos is meant to hold actual partner/customer marks in the { src, alt } shape.
  • mission renders as its own centered muted panel between the header and the logo strip; omitting it collapses the layout straight from the heading to the logos.

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

about16

Vision Mission Values

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

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

about48

Principles About

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

FREE

about69

Mission Band With Principles

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.