Bento Grid About

About Us

We are a small team doing big things

Design infrastructure for the modern web — built by people who care deeply about craft, accessibility, and developer experience.

Our mission is to make world-class UI accessible to every developer. We believe beautiful interfaces should not require a dedicated design team or months of custom work. By providing production-ready components, we help teams ship faster without sacrificing quality.

Team collaborating
About this block

Bento Grid AboutPRO

Asymmetric bento grid combining a mission card, team photo, stats, and stacked avatars. A modern, compact about section.

About10: Bento Grid About

Compact about section combining a mission paragraph and a single photo in an asymmetric bento grid: at desktop width the mission column spans two rows next to a wide image, while at tablet width they sit side by side as equal columns.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About10, about10Demo } from "@/components/beste/block/about10";

export default function AboutPage() {
  return <About10 {...about10Demo} />;
}

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

tsx
import { About10 } from "@/components/beste/block/about10";

export default function AboutPage() {
  return (
    <About10
      badge={{ label: "About Us", variant: "secondary" }}
      heading="We are a small team doing big things"
      description="Design infrastructure for the modern web, built by people who care about craft."
      mission="Our mission is to make world-class UI accessible to every developer, without a dedicated design team."
      image={{ src: "https://images.unsplash.com/photo-1587136527278-47b852bb3ef4?w=1200&fit=crop", alt: "Team collaborating" }}
      buttons={[{ label: "Learn More", 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 paragraph in the bento grid's text cell
image{ src: string; alt: string }Photo filling the bento grid's wide cell
buttonsButtonItem[][]CTA row below the mission paragraph
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

  • The bento asymmetry is lg-only: the grid is md:grid-cols-2 lg:grid-cols-3, and the mission cell's lg:row-span-2 only has an effect once the third column exists, so at md the mission and image simply sit side by side as two equal columns.
  • Buttons render directly beneath the mission paragraph inside its own grid cell, not centered under the whole section like in most other About blocks.
  • The image uses a fixed aspect-[4/3] crop with object-cover and spans two columns at lg (lg:col-span-2), so it reads as the dominant visual block next to the narrower text column.
  • The block only composes mission, image, and buttons in the grid; there is no stats or team-avatar sub-section, despite the bento framing suggesting a denser composition.

More About blocks

View all About
PRO

about66

About with Stats Grid

Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.

PRO

about20

Team Photo & List

Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.

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

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

about68

Team Portrait Grid

A team section with an eyebrow over a hairline rule, a two-column heading, and a grid of portrait cards each with a name and role.

PRO

about2

Values with Team Photo

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