> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gavai.io/llms.txt
> Use this file to discover all available pages before exploring further.

# FeaturesGrid

> A responsive grid of icon-backed cards — the standard product-capabilities section.

export const Def = ({term, type, defaultValue, required, children}) => <>
    <dt className="gv-def-list__term">
      <span className="gv-def-list__name">{term}</span>
      {type && <span className="gv-def-list__type">{type}</span>}
      {required && <span className="gv-def-list__required">required</span>}
      {defaultValue !== undefined && <span className="gv-def-list__default">
          default <code>{defaultValue}</code>
        </span>}
    </dt>
    <dd className="gv-def-list__description">{children}</dd>
  </>;

export const DefList = ({children}) => <dl className="gv-def-list">{children}</dl>;

export const BrandCard = ({eyebrow, title, href, icon, badge, cta, featured = false, horizontal = false, children}) => {
  const classes = ["gv-card", featured && "gv-card--featured", horizontal && "gv-card--horizontal"].filter(Boolean).join(" ");
  const inner = <>
      {icon && <span className="gv-card__icon" aria-hidden="true">
          <Icon icon={icon} />
        </span>}
      <div className="gv-card__main">
        {(eyebrow || badge) && <div className="gv-card__meta">
            {eyebrow && <Eyebrow label={eyebrow} tone="muted" />}
            {badge && <span className="gv-card__badge">{badge}</span>}
          </div>}
        <h3 className="gv-card__title">{title}</h3>
        {children && <div className="gv-card__body">{children}</div>}
        {cta && <span className="gv-card__cta">
            {cta}
            <svg className="gv-card__cta-arrow" viewBox="0 0 24 24" width="12" height="12" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
              <line x1="7" y1="17" x2="17" y2="7" />
              <polyline points="7 7 17 7 17 17" />
            </svg>
          </span>}
      </div>
    </>;
  return href ? <a className={classes} href={href}>
      {inner}
    </a> : <div className={classes}>{inner}</div>;
};

export const FeatureTable = ({columns, rows, featuredRow, caption, variant}) => <div className={`gv-feature-table ${variant ? `gv-feature-table--${variant}` : ""}`}>
    <table>
      {caption && <caption className="gv-feature-table__caption">{caption}</caption>}
      <thead>
        <tr>
          {columns.map(col => <th key={col.key} scope="col">
              <span className="gv-feature-table__header">{col.label}</span>
            </th>)}
        </tr>
      </thead>
      <tbody>
        {rows.map((row, i) => {
  const rowClass = [i === featuredRow ? "gv-feature-table__row--featured" : "", row.chosen ? "gv-feature-table__row--chosen" : ""].filter(Boolean).join(" ");
  return <tr key={i} className={rowClass}>
              {columns.map(col => {
    const v = row[col.key];
    if (variant === "tradeoff" && Array.isArray(v)) {
      const pill = col.key === "pros" ? "gv-feature-table__pill--pro" : col.key === "cons" ? "gv-feature-table__pill--con" : "";
      return <td key={col.key}>
                      {v.map((item, j) => <span key={j} className={`gv-feature-table__pill ${pill}`}>{item}</span>)}
                    </td>;
    }
    return <td key={col.key}>{v}</td>;
  })}
            </tr>;
})}
      </tbody>
    </table>
  </div>;

export const Eyebrow = ({label, tone = "default"}) => <div className={`gv-eyebrow gv-eyebrow--${tone}`}>
    <span className="gv-eyebrow__bar" aria-hidden="true" />
    <span className="gv-eyebrow__label">{label}</span>
  </div>;

<Eyebrow label="BLOCK" />

`FeaturesGrid` renders a responsive grid of icon-backed cards, each with a short title and a body sentence. You set the number of columns and supply the cards; the grid re-flows on smaller viewports. By the end of this page you will know how to wire up a feature grid, where to look up valid icon names, and which patterns work for marketing pages versus comparison sections.

## Example

```json features-grid.json theme={null}
{
  "block": "FeaturesGrid",
  "props": {
    "columns": 3,
    "items": [
      { "icon": "bolt", "title": "Fast", "body": "Sub-100ms responses." },
      { "icon": "lock", "title": "Secure", "body": "SOC 2 in progress." },
      { "icon": "globe", "title": "Global", "body": "Edge-deployed worldwide." }
    ]
  }
}
```

## Props

<DefList>
  <Def term="columns" type="integer" required>
    Number of columns in the grid on wide viewports. Common values: 2, 3, 4.
  </Def>

  <Def term="items" type="{ icon, title, body }[]" required>
    Ordered list of feature cards.
  </Def>

  <Def term="items[].icon" type="string (icon name)" required>
    Name of the icon from the icon registry. See the note below for fetching the live list.
  </Def>

  <Def term="items[].title" type="string" required>
    Card heading. Keep to 1–3 words for visual balance.
  </Def>

  <Def term="items[].body" type="string" required>
    One-sentence description displayed below the title.
  </Def>
</DefList>

<Note>
  Icon names come from a fixed internal registry. To fetch the live list for your runtime version, run `get_component_examples` via the [Builder MCP](/mcp/builder-mcp).
</Note>

## Patterns

**Above-the-fold marketing.** FeaturesGrid sits between a Hero and a Cta — the three together form the standard marketing rhythm: introduction, proof, conversion.

**Comparison block.** Set `columns: 2` and write contrasting `title` and `body` text — before/after, plan tiers, two approaches. The grid becomes a side-by-side comparison without needing a separate component.

**Dense capability list.** `columns: 4` with one-word titles works for surfacing breadth — every integration, every supported region.

## Common props

In addition to the FeaturesGrid-specific props, every block accepts `id`, `class_overrides`, `visible_if`, and `analytics_event`. See [common props on the PageBlocks overview](/pageblocks/overview#common-props).

## Where to go next

<Columns cols={2}>
  <BrandCard eyebrow="BLOCK" title="Cta" href="/pageblocks/blocks/cta">
    Add a focused conversion band after the grid.
  </BrandCard>

  <BrandCard eyebrow="BLOCK" title="SectionDivider" href="/pageblocks/blocks/section-divider">
    Separate the grid from the next section with a theme-aware divider.
  </BrandCard>
</Columns>
