Wide Banner & Product Cards

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

PRO

About29: Wide Banner & Product Cards

Centered header above a wide panoramic banner image, a three-column grid of product cards with a layered notes structure, and a sourcing grid of raw ingredients with their origin. Modeled on a perfume house's "about" page, but the shape works for any maker with a structured product line and a sourcing story.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About29, about29Demo } from "@/components/beste/block/about29";

export default function AboutPage() {
  return <About29 {...about29Demo} />;
}

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

tsx
import { About29 } from "@/components/beste/block/about29";

export default function AboutPage() {
  return (
    <About29
      badge={{ label: "Maison de Parfum", variant: "secondary" }}
      heading="Scent as autobiography"
      description="Small-batch fragrances from rare, ethically sourced botanicals."
      image={{
        src: "https://images.unsplash.com/photo-1626277890580-1924372c21fa?w=1200&h=500&fit=crop",
        alt: "Perfume atelier with glass bottles",
      }}
      fragrances={[
        {
          name: "Terre Noire",
          family: "Woody Oriental",
          year: "2013",
          notes: { top: "Black pepper, bergamot", heart: "Oud, incense, iris", base: "Vetiver, amber, musk" },
        },
        {
          name: "Jardin Sauvage",
          family: "Green Floral",
          year: "2016",
          notes: { top: "Fig leaf, galbanum", heart: "Jasmine sambac, violet leaf", base: "Oakmoss, white cedar" },
        },
      ]}
      ingredients={[
        { name: "Oud", origin: "Assam, India" },
        { name: "Rose de Mai", origin: "Grasse, France" },
      ]}
      buttons={[{ label: "Discovery Set", 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
image{ src: string; alt: string }Wide panoramic banner below the header
fragrancesFragrance[][]Product cards with layered notes, below the banner
ingredientsIngredient[][]Sourcing grid of raw materials and origins
buttonsButtonItem[][]Centered CTA row at the bottom
classNamestringExtra classes for the outer <section>
ts
type Fragrance = {
  name: string;
  family: string;
  year: string;
  notes: { top: string; heart: string; base: string };
};

type Ingredient = { name: string; origin: string };

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

Behavior notes

More About blocks

View all About
PRO

about60

Team Member Grid

Team section with an eyebrow, big heading, description and CTA above a responsive grid of people cards (portrait image, name, role).

PRO

about11

Hero Banner with Avatars

Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.

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

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

about2

Values with Team Photo

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

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.