Interactive Pillar Tabs & Image

Centered header with interactive hover tabs that crossfade a side image. Accordion descriptions and sliding accent line. For studios and agencies.

PRO

About26: Interactive Pillar Tabs & Image

Centered header above an interactive two-column layout: a vertical list of pillar tabs on the left, and a single image on the right that crossfades between each pillar's photo as the visitor hovers or clicks a tab. Built for studios and agencies that want to walk through a handful of core principles.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About26, about26Demo } from "@/components/beste/block/about26";

export default function AboutPage() {
  return <About26 {...about26Demo} />;
}

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

tsx
import { About26 } from "@/components/beste/block/about26";

export default function AboutPage() {
  return (
    <About26
      badge={{ label: "Our Approach", variant: "secondary" }}
      heading="Three pillars that define everything we do"
      description="We believe great architecture starts with people, place, and purpose."
      pillars={[
        {
          title: "People",
          description: "Every space begins with the people who will inhabit it.",
          image: {
            src: "https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=800&h=600&fit=crop",
            alt: "Team collaborating in a modern office",
          },
        },
        {
          title: "Place",
          description: "Context is everything: light, land, climate, and culture.",
          image: {
            src: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&h=600&fit=crop",
            alt: "Modern architectural building exterior",
          },
        },
      ]}
      buttons={[{ label: "View Our Work", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Eyebrow badge above the heading
headingstringCentered section heading
descriptionstringCentered lead paragraph under the heading
pillarsPillarItem[][]Tab list on the left, each with its own crossfade image
buttonsButtonItem[][]Centered CTA row at the bottom
classNamestringExtra classes for the outer <section>
ts
type PillarItem = {
  title: string;
  description: string;
  image: { src: string; alt: string };
};

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

Behavior notes

More About blocks

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

about59

About Statement With Pillars

Centered parenthetical eyebrow and a large statement heading, followed by a three-up row of icon pillars pairing a circular icon with a title and one-line description.

PRO

about29

Wide Banner & Product Cards

Centered header with wide panoramic image, product cards with layered attributes, and sourcing grid.

PRO

about44

Marquee Accent About

Layered about over a faint scrolling studio-word marquee with offset images and stats.

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

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.