Q&A About Us

Asymmetric two-column layout with heading on the left and question-answer pairs on the right. A conversational way to introduce your company.

PRO

About22: Q&A About Us

An asymmetric two-column layout: a narrow left column holds the badge, heading, description, and CTAs, while a wider right column stacks question/answer pairs as plain headings and paragraphs. A conversational alternative to a bulleted feature list for introducing a company.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About22, about22Demo } from "@/components/beste/block/about22";

export default function Page() {
  return <About22 {...about22Demo} />;
}

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

tsx
import { About22 } from "@/components/beste/block/about22";

export default function Page() {
  return (
    <About22
      badge={{ label: "Get to Know Us", variant: "secondary" }}
      heading="Questions people ask about us"
      description="Honest answers to the questions that matter most."
      items={[
        { question: "What exactly do you do?", answer: "We build production-ready UI blocks for React developers." },
        { question: "Who is this for?", answer: "Anyone building with React and Tailwind CSS, from solo developers to enterprise teams." },
        { question: "Is it really free?", answer: "Our core library is free and always will be. Pro adds more blocks and priority support." },
      ]}
      buttons={[{ label: "Browse Components", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label in the left column
headingstringHeading in the left column
descriptionstringIntro text in the left column
itemsQAItem[][]Question/answer pairs in the right column, rendered in order
buttonsButtonItem[][]CTAs under the description in the left column
classNamestringExtra classes for the outer <section>
ts
type QAItem = { question: string; answer: string };

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

Behavior notes

More About blocks

View all About
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.

PRO

about13

Company Profile

Asymmetric layout with company story and image on the left, and a vertical list of company details on the right. Great for press and investor pages.

PRO

about6

Numbered Principles

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

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

about32

Two Image Layout

Centered heading with description, followed by two images side-by-side. Configurable image ratio (equal, left larger, right larger). Always horizontal on mobile.

PRO

about5

Image & Text Split

Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.