> ## 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.

# Footer

> Bottom-of-page section with grouped link columns and a copyright line.

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" />

`Footer` renders the bottom section of a page — named groups of links plus a copyright string. This page explains the props, the shape of each group, and the patterns Footer supports. Each group is a column with a heading and a list of links: typically sitemap navigation, legal links, and social profiles. Footer is almost always the last block inside NavShell's `children` array and appears on every page in the workspace, so keep the content consistent.

## Example

```json footer.json theme={null}
{
  "block": "Footer",
  "props": {
    "groups": [
      {
        "title": "Product",
        "links": [
          { "label": "Features", "href": "/features" },
          { "label": "Pricing", "href": "/pricing" }
        ]
      },
      {
        "title": "Company",
        "links": [
          { "label": "About", "href": "/about" },
          { "label": "Blog", "href": "/blog" }
        ]
      }
    ],
    "copyright": "© 2026 Acme Co."
  }
}
```

## Props

<DefList>
  <Def term="groups" type="{ title, links }[]" required>
    Ordered list of link groups. Each group renders a footer column with a heading and links below.
  </Def>

  <Def term="groups[].title" type="string" required>
    Column heading for the group — `"Product"`, `"Company"`, `"Legal"`.
  </Def>

  <Def term="groups[].links" type="{ label, href }[]" required>
    List of links inside the group. See the note below for the authoritative shape.
  </Def>

  <Def term="copyright" type="string" required>
    Copyright notice at the bottom of the footer — `"© 2026 Acme Co."`.
  </Def>
</DefList>

<Note>
  The `links` shape inside each group is implied by convention. Confirm the authoritative shape — including whether `external` or `rel` attributes are supported — via the [Builder MCP](/mcp/builder-mcp) `get_block_schema` tool.
</Note>

## Patterns

**Standard SaaS footer.** Three groups: product (features, pricing, changelog), company (about, blog, careers), legal (privacy, terms). Mirrors the structure most users expect.

**Footer with social row.** Pull social profile links into a fourth group, or use `class_overrides` on the Footer instance to render them as a dedicated row beneath the link columns.

**Auto-updating copyright.** If your runtime version supports template interpolation in `copyright`, a string referencing the current year and brand name keeps the line up to date without per-year patches. Verify interpolation support against your runtime before relying on it.

## Common props

In addition to the Footer-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="SectionDivider" href="/pageblocks/blocks/section-divider">
    Theme-aware separator for use between content sections above the Footer.
  </BrandCard>

  <BrandCard eyebrow="PAGEBLOCKS" title="PageBlocks overview" href="/pageblocks/overview">
    Back to the full block catalogue.
  </BrandCard>
</Columns>
