Centered mission statement with a logo strip of trusted partners below. Ideal for building credibility on landing and about pages.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/about9?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Small label above the heading |
heading | string | – | Section heading |
description | string | – | Intro paragraph under the heading |
mission | string | – | Mission statement shown in its own muted panel |
logos | LogoItem[] | [] | Partner/customer logos in the trust strip |
logosLabel | string | – | Caption above the logo strip |
buttons | ButtonItem[] | [] | CTA row at the bottom |
className | string | – | Extra classes for the outer <section> |
type LogoItem = { src: string; alt: string };
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};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.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.about57
Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.
about1
Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.
about65
Centered manifesto with a very large multi-line statement heading, muted emphasis phrases, a closing line, and a single CTA.
about16
Three-column cards for vision, mission, and values with labeled headers. Clean editorial layout for company positioning.
about48
About pairing a sticky studio statement and image with a numbered list of operating principles.
about6
Asymmetric two-column layout with heading on the left and numbered company principles on the right. Clean and editorial.