Vision Mission Values

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

PRO

About16: Vision Mission Values

Three flat cards, one each for vision, mission, and values, with a small uppercase label over a bold statement and a supporting paragraph. A centered header and an optional CTA row bracket the grid. Built for a clean editorial statement of company positioning rather than a data-heavy overview.

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

Base UI flavor

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

This installs the block to components/beste/block/about16.tsx and the badge and button shadcn/ui primitives it depends on.

Quick start

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

tsx
import { About16, about16Demo } from "@/components/beste/block/about16";

export default function Page() {
  return <About16 {...about16Demo} />;
}

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

tsx
import { About16 } from "@/components/beste/block/about16";

export default function Page() {
  return (
    <About16
      badge={{ label: "Who We Are", variant: "secondary" }}
      heading="Three pillars that define us"
      description="Everything we do flows from our vision, our mission, and our values."
      pillars={[
        { label: "Vision", title: "A web where every interface is accessible", description: "Design quality should not be a luxury." },
        { label: "Mission", title: "Give developers the building blocks to ship faster", description: "Production-ready components, not starting points." },
        { label: "Values", title: "Quality, transparency, and user focus", description: "We sweat the details because our users do." },
      ]}
      buttons={[{ label: "Learn More", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringSection heading
descriptionstringSection intro text
pillarsPillarItem[][]The three cards; each needs a label, a title, and an optional description
buttonsButtonItem[][]CTAs centered under the grid
classNamestringExtra classes for the outer <section>
ts
type PillarItem = { label: string; title: string; description?: string };

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

More About blocks

View all About
PRO

about2

Values with Team Photo

Full-width team photo with a three-column values grid below. Great for culture pages and brand storytelling.

PRO

about7

Team Cards with Bios

Three-column grid of team member cards with avatars, roles, and short bios. Great for leadership and team pages.

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

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

about23

Story, Image & Team Row

Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.