Grouped Link Columns

About this block

Grouped Link ColumnsPRO

Three columns of ruled links under their own small-caps headings, each link a serif label over a line of context that fades on hover, so a whole directory of pages sits in one section under a heading that settles in word by word.

Three columns of ruled links under their own small-caps headings, so a whole directory of pages sits in one section.

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

Base UI flavor

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

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

Quick start

The installed file exports feature302Demo alongside the block: the exact props behind the preview above. Spread it to get a working grouped Link Columns in one line.

tsx
import { Feature302, feature302Demo } from "@/components/beste/block/feature302";

export default function Page() {
  return <Feature302 {...feature302Demo} />;
}

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

tsx
import { Feature302 } from "@/components/beste/block/feature302";

export default function Page() {
  return (
    <Feature302
      eyebrow="Find your way in"
      heading="Everything, grouped the way people ask for it."
      description="Three ways through the same practice."
      button={ label: "Talk to someone first", href: "/contact", tone: "outline" }
      groups={[
        {
          title: "By what you are carrying",
          links: [
            { label: "Grief and loss", description: "Held for as long as it takes", href: "/grief" },
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro paragraph under the heading
buttonActionButtonPill action centred under the columns
groupsGroup[][]Link groups, three across from md
classNamestringExtra classes for the outer <section>
ts
type GroupLink = {
  label: string;
  description?: string;
  href: string;
};

type Group = {
  title: string;
  links: GroupLink[];
};

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

Behavior notes

  • Every entry is its own Link with a hairline under it, so a group reads as a list of destinations rather than a paragraph with links in it.
  • Only the group heading is small-caps; the entry labels stay in the serif at sentence case, which keeps one uppercase line per screen.
  • The label fades to seventy percent on hover while the rule under it darkens, so the row answers without shifting its neighbours.
  • description is optional per entry, so a group can mix bare labels with explained ones without the rows losing their rhythm.
  • Groups stack to one column below md, keeping their headings so the grouping survives on a phone.
  • Entry delay is per group rather than per link, so three columns arrive one after another instead of forty rows staggering.

More Feature blocks

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

feature300

Linked Card Grid

Six hairline cards in a three-column grid, each one a whole link carrying a ringed icon, a serif title, a line of context and an arrow that lifts on hover, under a serif heading that settles in word by word beside a sliding-marker pill.

PRO

feature290

Six Cell Grid

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.

PRO

feature308

Linked Index Chips

An alphabetical index: each ruled row pairs a serif letter with a wrapped row of pill links, so a long glossary of pages stays scannable under a heading that settles in word by word.

PRO

feature287

Photo Steps

Three numbered steps in columns, each topped by a photograph that drifts inside its frame, with a serif title and a description, under a serif heading that settles in word by word and a sliding-marker pill.

PRO

feature305

Hover Photo Link List

A ruled list where every row is a link and hovering or focusing one fades a pinned photograph in beside it, the resting rows dimmed to half so the row under the cursor is the only one at full strength.