Six Cell Grid

Everything, in one place

Sixthingsthatcomewitheveryhour.

Listening to the end

Nobody is cut off. The thought gets finished before the hour does.

A note the next day

A few lines from us within a day, yours to keep and read back.

Evening hours

Sessions until nine, Monday to Thursday, for the after-work hour.

Walking sessions

Fridays along the river, on foot, rain permitting.

Confidential, fully

Nothing leaves the room except the note we write for you.

A kettle and a chair

Arrive early, stay a little after. The waiting room is quiet on purpose.

About this block

Six Cell GridPRO

A ruled two-by-three grid of features, each cell with a bare icon, a serif title and a description, arriving row by row under a serif heading that settles in word by word and a sliding-marker pill.

Feature290: Six Cell Grid

Six cells in a ruled grid that behaves like a table: icons above serif titles and short paragraphs, with vertical rules drawn only where the columns actually meet.

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

Base UI flavor

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

This installs the block to components/beste/block/feature290.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Feature290, feature290Demo } from "@/components/beste/block/feature290";

export default function Page() {
  return <Feature290 {...feature290Demo} />;
}

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

tsx
import { Feature290 } from "@/components/beste/block/feature290";

export default function Page() {
  return (
    <Feature290
      eyebrow="Everything, in one place"
      heading="Six things that come with every hour."
      button={{ label: "See how it works", href: "/how", tone: "outline" }}
      cells={[
        { icon: Ear, title: "Listening to the end", description: "Nobody is cut off." },
        { icon: BookOpen, title: "A note the next day", description: "A few lines from us within a day." },
        { icon: Moon, title: "Evening hours", description: "Sessions until nine, Monday to Thursday." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
cellsCell[][]Grid cells, three across from md
classNamestringExtra classes for the outer <section>
ts
type Cell = {
  icon: LucideIcon;
  title: string;
  description: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The rules are drawn with nth-child selectors rather than by giving every cell a border, so no double line ever appears where two cells meet and the outer edges stay clean.
  • Those selectors are written twice over, once for the two-column layout at sm and once for three columns at md, with the sm rules explicitly unset at md (md:[&:nth-child(2n)]:border-l-0). That is what keeps the grid correct at both widths instead of inheriting a rule in the wrong place.
  • The entry delay combines column and row, (index % 3) * 0.1 + Math.floor(index / 3) * 0.15, so the grid resolves left to right and top to bottom rather than as one long queue.
  • icon takes the Lucide component itself, not a name string, so icons are tree-shaken with your bundle and there is no map to maintain.
  • Icons are drawn bare here rather than in a circle, which suits a grid that is already ruled; a circled mark in every cell would be one shape too many.
  • Cell titles are h3 under the section h2, and nothing in the grid is interactive.
  • The grid is written for six cells in a three-column layout; a count that does not divide by three leaves the last row short rather than stretching, which is the intended shape.

More Feature blocks

View all Feature
PRO

feature294

Six Gains Ruled Grid

A header with a serif headline that settles in word by word and, at its right end, a rounded pill that copies the install command on click; below it a ruled two by three grid of thin icons, serif titles and short paragraphs that settle in one after another as they scroll into view.

PRO

feature277

Six Promises

A values grid: a serif heading settling in word by word beside the intro and a pill action, then six numbered promises in three columns whose top rules draw themselves in one after another, over a slowly drifting soft light.

PRO

feature281

Three Icon Columns

The classic three-column feature: a centred serif heading that settles in word by word and an intro, three columns with a round muted icon, a serif title and a description that arrive in turn, and a sliding-marker pill beneath.

PRO

feature162

Numbered Steps Grid

3-column grid of numbered steps with titles and descriptions. Ideal for onboarding flows, process overviews, and how-it-works sections.

PRO

feature161

Icon Row Feature Grid

3-column grid of horizontal feature items with icon and text side by side. Clean layout for capability highlights and feature overviews.

PRO

feature199

Feature with Side Heading and Icon Grid

Two-column feature section with a large heading on the left and a 2x2 grid of feature cards on the right, each with a large badge icon, title, and description.